pub enum EcdsaAlgorithm {
P256,
}
Expand description
Named elliptic curves supported by Yacme
Variants§
P256
The NIST P-256 (a.k.a. secp256r1, prime256v1) elliptic curve.
Trait Implementations§
Source§impl Clone for EcdsaAlgorithm
impl Clone for EcdsaAlgorithm
Source§fn clone(&self) -> EcdsaAlgorithm
fn clone(&self) -> EcdsaAlgorithm
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EcdsaAlgorithm
impl Debug for EcdsaAlgorithm
Source§impl PartialEq for EcdsaAlgorithm
impl PartialEq for EcdsaAlgorithm
impl Copy for EcdsaAlgorithm
impl Eq for EcdsaAlgorithm
impl StructuralPartialEq for EcdsaAlgorithm
Auto Trait Implementations§
impl Freeze for EcdsaAlgorithm
impl RefUnwindSafe for EcdsaAlgorithm
impl Send for EcdsaAlgorithm
impl Sync for EcdsaAlgorithm
impl Unpin for EcdsaAlgorithm
impl UnwindSafe for EcdsaAlgorithm
Blanket Implementations§
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