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<SignatureAlgorithm<'a>> for SignatureAlgorithm<'a>
impl<'a> PartialEq<SignatureAlgorithm<'a>> 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 ==.