Function dryoc::classic::crypto_sign::crypto_sign_verify_detached
source · pub fn crypto_sign_verify_detached(
signature: &Signature,
message: &[u8],
public_key: &PublicKey
) -> Result<(), Error>
Expand description
Verifies that signature
is a valid signature for message
using the given
public_key
.
This function is compatible with libsodiums
crypto_sign_verify_detached, however the
ED25519_NONDETERMINISTIC` feature is not supported.