pub enum SignatureScheme {
Pkcs1WithSha256 = 1_025,
Pkcs1WithSha384 = 1_281,
Pkcs1WithSha512 = 1_537,
PssWithSha256 = 2_052,
PssWithSha384 = 2_053,
PssWithSha512 = 2_054,
EcdsaWithP256AndSha256 = 1_027,
EcdsaWithP384AndSha384 = 1_283,
EcdsaWithP521AndSha512 = 1_539,
Ed25519 = 2_055,
Pkcs1WithSha1 = 513,
EcdsaWithSha1 = 515,
}
Variants§
Pkcs1WithSha256 = 1_025
Pkcs1WithSha384 = 1_281
Pkcs1WithSha512 = 1_537
PssWithSha256 = 2_052
PssWithSha384 = 2_053
PssWithSha512 = 2_054
EcdsaWithP256AndSha256 = 1_027
EcdsaWithP384AndSha384 = 1_283
EcdsaWithP521AndSha512 = 1_539
Ed25519 = 2_055
Pkcs1WithSha1 = 513
EcdsaWithSha1 = 515
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 for SignatureScheme
impl PartialEq 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 ==
.impl Copy for SignatureScheme
impl Eq for SignatureScheme
impl StructuralPartialEq for SignatureScheme
Auto Trait Implementations§
impl Freeze for SignatureScheme
impl RefUnwindSafe for SignatureScheme
impl Send for SignatureScheme
impl Sync for SignatureScheme
impl Unpin for SignatureScheme
impl UnwindSafe for SignatureScheme
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> 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<'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