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