Struct openssl::sign::Verifier

source ·
pub struct Verifier<'a> { /* private fields */ }
Expand description

A type which can be used to verify the integrity and authenticity of data given the signature.

Implementations§

source§

impl<'a> Verifier<'a>

A type which verifies cryptographic signatures of data.

source

pub fn new<T>( type_: MessageDigest, pkey: &'a PKeyRef<T> ) -> Result<Verifier<'a>, ErrorStack>
where T: HasPublic,

Creates a new Verifier.

This cannot be used with Ed25519 or Ed448 keys. Please refer to Verifier::new_without_digest.

OpenSSL documentation at EVP_DigestVerifyInit.

source

pub fn new_without_digest<T>( pkey: &'a PKeyRef<T> ) -> Result<Verifier<'a>, ErrorStack>
where T: HasPublic,

Creates a new Verifier without a digest.

This is the only way to create a Verifier for Ed25519 or Ed448 keys.

OpenSSL documentation at EVP_DigestVerifyInit.

source

pub fn rsa_padding(&self) -> Result<Padding, ErrorStack>

Returns the RSA padding mode in use.

This is only useful for RSA keys.

This corresponds to EVP_PKEY_CTX_get_rsa_padding.

source

pub fn set_rsa_padding(&mut self, padding: Padding) -> Result<(), ErrorStack>

Sets the RSA padding mode.

This is only useful for RSA keys.

This corresponds to EVP_PKEY_CTX_set_rsa_padding.

source

pub fn set_rsa_pss_saltlen( &mut self, len: RsaPssSaltlen ) -> Result<(), ErrorStack>

Sets the RSA PSS salt length.

This is only useful for RSA keys.

This corresponds to EVP_PKEY_CTX_set_rsa_pss_saltlen.

source

pub fn set_rsa_mgf1_md(&mut self, md: MessageDigest) -> Result<(), ErrorStack>

Sets the RSA MGF1 algorithm.

This is only useful for RSA keys.

This corresponds to EVP_PKEY_CTX_set_rsa_mgf1_md.

source

pub fn update(&mut self, buf: &[u8]) -> Result<(), ErrorStack>

Feeds more data into the Verifier.

Please note that PureEdDSA (Ed25519 and Ed448 keys) do not support streaming. Use Verifier::verify_oneshot instead.

OpenSSL documentation at EVP_DigestUpdate.

source

pub fn verify(&self, signature: &[u8]) -> Result<bool, ErrorStack>

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

OpenSSL documentation at EVP_DigestVerifyFinal.

source

pub fn verify_oneshot( &mut self, signature: &[u8], buf: &[u8] ) -> Result<bool, ErrorStack>

Determines if the data given in buf matches the provided signature.

OpenSSL documentation at EVP_DigestVerify.

Trait Implementations§

source§

impl<'a> Drop for Verifier<'a>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<'a> Write for Verifier<'a>

source§

fn write(&mut self, buf: &[u8]) -> Result<usize>

Write a buffer into this writer, returning how many bytes were written. Read more
source§

fn flush(&mut self) -> Result<()>

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

fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize, Error>

Like write, except that it writes from a slice of buffers. Read more
source§

fn is_write_vectored(&self) -> bool

🔬This is a nightly-only experimental API. (can_vector)
Determines if this Writer has an efficient write_vectored implementation. Read more
1.0.0 · source§

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>

Attempts to write an entire buffer into this writer. Read more
source§

fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>

🔬This is a nightly-only experimental API. (write_all_vectored)
Attempts to write multiple buffers into this writer. Read more
1.0.0 · source§

fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<(), Error>

Writes a formatted string into this writer, returning any error encountered. Read more
1.0.0 · source§

fn by_ref(&mut self) -> &mut Self
where Self: Sized,

Creates a “by reference” adapter for this instance of Write. Read more
source§

impl<'a> Send for Verifier<'a>

source§

impl<'a> Sync for Verifier<'a>

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for Verifier<'a>

§

impl<'a> Unpin for Verifier<'a>

§

impl<'a> UnwindSafe for Verifier<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.