pub enum SignatureScheme {
Pkcs1WithSha256,
Pkcs1WithSha384,
Pkcs1WithSha512,
PssWithSha256,
PssWithSha384,
PssWithSha512,
EcdsaWithP256AndSha256,
EcdsaWithP384AndSha384,
EcdsaWithP521AndSha512,
Ed25519,
Pkcs1WithSha1,
EcdsaWithSha1,
}
Variants§
Pkcs1WithSha256
Pkcs1WithSha384
Pkcs1WithSha512
PssWithSha256
PssWithSha384
PssWithSha512
EcdsaWithP256AndSha256
EcdsaWithP384AndSha384
EcdsaWithP521AndSha512
Ed25519
Pkcs1WithSha1
EcdsaWithSha1
Trait Implementations§
source§impl Clone for SignatureScheme
impl Clone for SignatureScheme
source§fn clone(&self) -> SignatureScheme
fn clone(&self) -> SignatureScheme
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SignatureScheme
impl Debug for SignatureScheme
source§impl PartialEq<SignatureScheme> for SignatureScheme
impl PartialEq<SignatureScheme> for SignatureScheme
source§fn eq(&self, other: &SignatureScheme) -> bool
fn eq(&self, other: &SignatureScheme) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.