Struct openssl::sign::Verifier [] [src]

pub struct Verifier<'a> { /* fields omitted */ }

Methods

impl<'a> Verifier<'a>
[src]

A type which verifies cryptographic signatures of data.

[src]

Creates a new Verifier.

OpenSSL documentation at EVP_DigestVerifyInit.

[src]

Returns the RSA padding mode in use.

This is only useful for RSA keys.

This corresponds to EVP_PKEY_CTX_get_rsa_padding.

[src]

Sets the RSA padding mode.

This is only useful for RSA keys.

This corresponds to EVP_PKEY_CTX_set_rsa_padding.

[src]

Feeds more data into the Verifier.

OpenSSL documentation at EVP_DigestUpdate.

[src]

Determines if the data fed into the Verifier matches the provided signature.

OpenSSL documentation at EVP_DigestVerifyFinal.

Trait Implementations

impl<'a> Drop for Verifier<'a>
[src]

[src]

Executes the destructor for this type. Read more

impl<'a> Write for Verifier<'a>
[src]

[src]

Write a buffer into this object, returning how many bytes were written. Read more

[src]

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

1.0.0
[src]

Attempts to write an entire buffer into this write. Read more

1.0.0
[src]

Writes a formatted string into this writer, returning any error encountered. Read more

1.0.0
[src]

Creates a "by reference" adaptor for this instance of Write. Read more