pub fn verify_signature(
verifying_key: &VerifyingKey,
msg: &[u8],
signature: &Signature,
) -> Result<(), CryptoError>
Expand description
Returns an Ok
result for valid signature for the message, or an appropriate Err
result otherwise.