Syntax Syntax
Parameters Parameters
- $signedMessage
-
(Required)
- $pk
-
(Required)
Return Return
(string|bool)
Source Source
File: wp-includes/sodium_compat/lib/php72compat.php
function sodium_crypto_sign_open($signedMessage, $pk)
{
try {
return ParagonIE_Sodium_Compat::crypto_sign_open($signedMessage, $pk);
} catch (Error $ex) {
return false;
} catch (Exception $ex) {
return false;
}
}