pub enum Algorithm {
P256,
Secp256k1,
}Expand description
Supported algorithms (elliptic curves) for atproto cryptography.
Variants§
P256
p256 elliptic curve: aka “NIST P-256”, aka secp256r1 (note the r), aka prime256v1.
Secp256k1
k256 elliptic curve: aka “NIST K-256”, aka secp256k1 (note the k).
Trait Implementations§
impl Copy for Algorithm
impl Eq for Algorithm
impl StructuralPartialEq for Algorithm
Auto Trait Implementations§
impl Freeze for Algorithm
impl RefUnwindSafe for Algorithm
impl Send for Algorithm
impl Sync for Algorithm
impl Unpin for Algorithm
impl UnwindSafe for Algorithm
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