ParagonIE_Sodium_Compat::crypto_secretstream_xchacha20poly1305_init_push() public WP 1.0
{} It's a method of the class: ParagonIE_Sodium_Compat{}
No Hooks.
Return
Array
Usage
$result = ParagonIE_Sodium_Compat::crypto_secretstream_xchacha20poly1305_init_push( $key );
- $key(string) (required)
- -
Code of ParagonIE_Sodium_Compat::crypto_secretstream_xchacha20poly1305_init_push() ParagonIE Sodium Compat::crypto secretstream xchacha20poly1305 init push WP 5.7
public static function crypto_secretstream_xchacha20poly1305_init_push($key)
{
if (PHP_INT_SIZE === 4) {
return ParagonIE_Sodium_Crypto32::secretstream_xchacha20poly1305_init_push($key);
}
return ParagonIE_Sodium_Crypto::secretstream_xchacha20poly1305_init_push($key);
}