pub enum EllipticCurve {
P192 = 0,
P256 = 1,
}Expand description
Represents supported elliptic curves for cryptographic operations.
Variants§
P192 = 0
The P-192 elliptic curve, a 192-bit curve.
P256 = 1
The P-256 elliptic curve. a 256-bit curve.
Auto Trait Implementations§
impl Freeze for EllipticCurve
impl RefUnwindSafe for EllipticCurve
impl Send for EllipticCurve
impl Sync for EllipticCurve
impl Unpin for EllipticCurve
impl UnwindSafe for EllipticCurve
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