Abstract_API_Key_Api::api_hash( string $text )

Hash the specified text.


Parameters

$text

(string) (Required) Text to be hashed.


Top ↑

Return

(string) The hashed text.


Top ↑

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' );
	}

Top ↑

Changelog

Changelog
Version Description
6.0.0 Introduced.