pub enum KeyAlg {
Aes(AesTypes),
Bls12_381(BlsCurves),
Chacha20(Chacha20Types),
Ed25519,
X25519,
EcCurve(EcCurves),
}Expand description
Supported key algorithms
Variants§
Aes(AesTypes)
AES
Bls12_381(BlsCurves)
BLS12-381
Chacha20(Chacha20Types)
(X)ChaCha20-Poly1305
Ed25519
Ed25519 signing key
X25519
Curve25519 elliptic curve key exchange key
EcCurve(EcCurves)
Elliptic Curve key for signing or key exchange
Implementations§
Trait Implementations§
Source§impl Ord for KeyAlg
impl Ord for KeyAlg
Source§impl PartialOrd for KeyAlg
impl PartialOrd for KeyAlg
impl Copy for KeyAlg
impl Eq for KeyAlg
impl StructuralPartialEq for KeyAlg
Auto Trait Implementations§
impl Freeze for KeyAlg
impl RefUnwindSafe for KeyAlg
impl Send for KeyAlg
impl Sync for KeyAlg
impl Unpin for KeyAlg
impl UnwindSafe for KeyAlg
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more