ParagonIE_Sodium_Compat::crypto_secretstream_xchacha20poly1305_init_push() public WP 1.0
{} Это метод класса: ParagonIE_Sodium_Compat{}
Хуков нет.
Возвращает
Массив<Число,
. string> Returns a state and a header.
Использование
$result = ParagonIE_Sodium_Compat::crypto_secretstream_xchacha20poly1305_init_push( $key );
- $key(строка) (обязательный)
- -
Код 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);
}