pub struct Verifier<'a> { /* private fields */ }
Implementations
sourceimpl<'a> Verifier<'a>
impl<'a> Verifier<'a>
A type which verifies cryptographic signatures of data.
sourcepub fn new<T>(
type_: MessageDigest,
pkey: &'a PKeyRef<T>
) -> Result<Verifier<'a>, ErrorStack> where
T: HasPublic,
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
new_without_digest
.
OpenSSL documentation at EVP_DigestVerifyInit
.
sourcepub fn new_without_digest<T>(
pkey: &'a PKeyRef<T>
) -> Result<Verifier<'a>, ErrorStack> where
T: HasPublic,
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
.
sourcepub fn rsa_padding(&self) -> Result<Padding, ErrorStack>
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
.
sourcepub fn set_rsa_padding(&mut self, padding: Padding) -> Result<(), ErrorStack>
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
.
sourcepub fn set_rsa_pss_saltlen(
&mut self,
len: RsaPssSaltlen
) -> Result<(), ErrorStack>
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
.
sourcepub fn set_rsa_mgf1_md(&mut self, md: MessageDigest) -> Result<(), ErrorStack>
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
.
sourcepub fn update(&mut self, buf: &[u8]) -> Result<(), ErrorStack>
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 verify_oneshot
instead.
OpenSSL documentation at EVP_DigestUpdate
.
sourcepub fn verify(&self, signature: &[u8]) -> Result<bool, ErrorStack>
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
.
sourcepub fn verify_oneshot(
&mut self,
signature: &[u8],
buf: &[u8]
) -> Result<bool, ErrorStack>
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
sourceimpl<'a> Write for Verifier<'a>
impl<'a> Write for Verifier<'a>
sourcefn write(&mut self, buf: &[u8]) -> Result<usize>
fn write(&mut self, buf: &[u8]) -> Result<usize>
Write a buffer into this writer, returning how many bytes were written. Read more
sourcefn flush(&mut self) -> Result<()>
fn flush(&mut self) -> Result<()>
Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
sourcefn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
can_vector
)Determines if this Write
r has an efficient write_vectored
implementation. Read more
1.0.0 · sourcefn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Attempts to write an entire buffer into this writer. Read more
sourcefn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
write_all_vectored
)Attempts to write multiple buffers into this writer. Read more
impl<'a> Send for Verifier<'a>
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more