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