pub enum SignatureAlgorithm<'a> {
RSA,
RSASSA_PSS(Box<RsaSsaPssParams<'a>>),
RSAAES_OAEP(Box<RsaAesOaepParams<'a>>),
DSA,
ECDSA,
ED25519,
}
Variants§
Trait Implementations§
source§impl<'a> Debug for SignatureAlgorithm<'a>
impl<'a> Debug for SignatureAlgorithm<'a>
source§impl<'a> PartialEq for SignatureAlgorithm<'a>
impl<'a> PartialEq for SignatureAlgorithm<'a>
source§fn eq(&self, other: &SignatureAlgorithm<'a>) -> bool
fn eq(&self, other: &SignatureAlgorithm<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'a, 'b> TryFrom<&'b AlgorithmIdentifier<'a>> for SignatureAlgorithm<'a>
impl<'a, 'b> TryFrom<&'b AlgorithmIdentifier<'a>> for SignatureAlgorithm<'a>
impl<'a> StructuralPartialEq for SignatureAlgorithm<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for SignatureAlgorithm<'a>
impl<'a> Send for SignatureAlgorithm<'a>
impl<'a> Sync for SignatureAlgorithm<'a>
impl<'a> Unpin for SignatureAlgorithm<'a>
impl<'a> UnwindSafe for SignatureAlgorithm<'a>
Blanket Implementations§
source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more