Trait ring::signature::VerificationAlgorithm
[−]
[src]
pub trait VerificationAlgorithm: Sync + Private {
fn verify(&self,
public_key: Input,
msg: Input,
signature: Input)
-> Result<(), Unspecified>;
}A signature verification algorithm.
Required Methods
fn verify(&self,
public_key: Input,
msg: Input,
signature: Input)
-> Result<(), Unspecified>
public_key: Input,
msg: Input,
signature: Input)
-> Result<(), Unspecified>
Verify the signature signature of message msg with the public key
public_key.
Implementors
impl VerificationAlgorithm for EdDSAParametersimpl VerificationAlgorithm for ECDSAParametersimpl VerificationAlgorithm for RSAParameters