(PHP 7 >= 7.2.0, PHP 8)
sodium_crypto_box_open — 认证的公钥解密
$ciphertext
, string $nonce
, #[\SensitiveParameter] string $key_pair
): string|false使用非对称(公钥)加密解密消息。
ciphertext
尝试解密的加密消息。
nonce
每个消息只能使用一次的数字。长度为24字节。这对于随机生成来说足够大(例如 random_bytes())。
key_pair
参见 sodium_crypto_box_keypair_from_secretkey_and_publickey()。这应该包括发送者的公钥和接收者的私钥。
成功时返回明文消息,失败时返回 false
。