Abstract_API_Key_Api::api_hash( string $text )
Hash the specified text.
Contents
Parameters
- $text
-
(string) (Required) Text to be hashed.
Return
(string) The hashed text.
Source
File: src/Common/Event_Automator/Zapier/Abstract_API_Key_Api.php
public static function api_hash( $text ) {
return hash_hmac( 'sha256', $text, 'tec-automator-zapier' );
}
Changelog
| Version | Description |
|---|---|
| 6.0.0 | Introduced. |