llms_rest_api_hash( string $data )
Generate a keyed hash value using the HMAC method with the key llms-rest-api
Parameters Parameters
- $data
-
(string) (Required) Message to be hashed.
Return Return
(string)
Source Source
File: libraries/lifterlms-rest/includes/llms-rest-functions.php
function llms_rest_api_hash( $data ) { return hash_hmac( 'sha256', $data, 'llms-rest-api' ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
1.0.0-beta.1 | Introduced. |