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 a shared reference to the PKeyCtx associated with the Verifier.

[src]

Returns a mutable reference to the PKeyCtx associated with the Verifier.

[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.

[src]

Deprecated since 0.9.23

: renamed to verify

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