Sodium
crypto_shorthash() WP 1.0
No Hooks.
Return
String
. Null. Nothing.
Usage
crypto_shorthash( $message, $key );
- $message(string) (required)
- -
- $key(string)
- -
Notes
- See: ParagonIE_Sodium_Compat::crypto_shorthash()
Code of crypto_shorthash() crypto shorthash WP 5.7
function crypto_shorthash($message, $key = '')
{
return ParagonIE_Sodium_Compat::crypto_shorthash($message, $key);
}