Sodium
crypto_secretbox() WP 1.0
Хуков нет.
Возвращает
Строку
. Null. Ничего.
Использование
crypto_secretbox( $message, $nonce, $key );
- $message(строка) (обязательный)
- -
- $nonce(строка) (обязательный)
- -
- $key(строка) (обязательный)
- -
Заметки
- Смотрите: ParagonIE_Sodium_Compat::crypto_secretbox()
Код crypto_secretbox() crypto secretbox WP 5.7
function crypto_secretbox($message, $nonce, $key)
{
return ParagonIE_Sodium_Compat::crypto_secretbox($message, $nonce, $key);
}