(PHP 7 >= 7.2.0, PHP 8)
sodium_crypto_secretbox — 認証付きの共有鍵による暗号化
$message
, string $nonce
, string $key
): string対称(共有)鍵を使い、メッセージを暗号化します。
message
暗号化するプレーンテキスト
nonce
メッセージごとに一度だけ使われる数値。 長さは24バイトです。 これは、 (たとえば、random_bytes()を使って) ランダムな値を生成するのに十分大きな長さです。
key
暗号化キー(256ビット)
暗号化された文字列を返します。
nonce
の長さが
SODIUM_CRYPTO_SECRETBOX_NONCEBYTES
(24 バイト)
と異なっている場合、
SodiumException がスローされます。
key
の長さが、
SODIUM_CRYPTO_SECRETBOX_KEYBYTES
(32 バイト)
と異なっている場合、
SodiumException がスローされます。
例1 sodium_crypto_secretbox() の例
<?php
// The $key must be kept confidential
$key = sodium_crypto_secretbox_keygen();
// Do not reuse $nonce with the same key
$nonce = random_bytes(SODIUM_CRYPTO_SECRETBOX_NONCEBYTES);
$plaintext = "message to be encrypted";
$ciphertext = sodium_crypto_secretbox($plaintext, $nonce, $key);
var_dump(bin2hex($ciphertext));
// The same nouce and key are required to decrypt the $ciphertext
var_dump(sodium_crypto_secretbox_open($ciphertext, $nonce, $key));
?>
上の例の出力は、 たとえば以下のようになります。
string(78) "3a1fa3e9f7b72ef8be51d40abf8e296c6899c185d07b18b4c93e7f26aa776d24c50852cd6b1076" string(23) "message to be encrypted"