(PHP 7 >= 7.2.0, PHP 8)
sodium_crypto_secretbox_open — 認証付きの共有鍵による復号
$ciphertext
, string $nonce
, string $key
): string|false対称(共有)鍵を使い、暗号化されたメッセージを復号します。
ciphertext
sodium_crypto_secretbox() が生成したフォーマットでなければいけません。 (暗号化されたテキスト、タグを連結したもの)
nonce
メッセージごとに一度だけ使われる数値。 長さは24バイトです。 これは、 (たとえば、random_bytes()を使って) ランダムな値を生成するのに十分大きな長さです。
key
暗号化キー(256ビット)
成功時には、復号した文字列を返します。
失敗した場合に false
を返します.
nonce
の長さが
SODIUM_CRYPTO_SECRETBOX_NONCEBYTES
(24 バイト)
と異なっている場合、
SodiumException がスローされます。
key
の長さが、
SODIUM_CRYPTO_SECRETBOX_KEYBYTES
(32 バイト)
と異なっている場合、
SodiumException がスローされます。
例1 sodium_crypto_secretbox_open() の例
<?php
// The $key must be kept confidential
$key = random_bytes(SODIUM_CRYPTO_SECRETBOX_KEYBYTES);
// Do not reuse $nonce with the same key
$nonce = random_bytes(SODIUM_CRYPTO_SECRETBOX_NONCEBYTES);
$ciphertext = sodium_crypto_secretbox('message to be encrypted', $nonce, $key);
// The same nouce and key are required to decrypt the $ciphertext
$plaintext = sodium_crypto_secretbox_open($ciphertext, $nonce, $key);
if ($plaintext !== false) {
echo $plaintext . PHP_EOL;
}
?>
上の例の出力は以下となります。
message to be encrypted