Struct ring::signature::RSAParameters [] [src]

pub struct RSAParameters {
    // some fields omitted
}

Parameters for RSA signing and verification.

Trait Implementations

impl VerificationAlgorithm for RSAParameters
[src]

fn verify(&self, public_key: Input, msg: Input, signature: Input) -> Result<()Unspecified>

Verify the signature signature of message msg with the public key public_key. Read more