pub enum KeyAgreementAlgorithm {
EcdhEsHkdf256,
}Expand description
Key-agreement algorithms in the profile allow-set.
Variants§
EcdhEsHkdf256
ECDH-ES + HKDF-256 (COSE codepoint -25), X25519 keys.
Implementations§
Trait Implementations§
Source§impl Clone for KeyAgreementAlgorithm
impl Clone for KeyAgreementAlgorithm
Source§fn clone(&self) -> KeyAgreementAlgorithm
fn clone(&self) -> KeyAgreementAlgorithm
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for KeyAgreementAlgorithm
Source§impl Debug for KeyAgreementAlgorithm
impl Debug for KeyAgreementAlgorithm
impl Eq for KeyAgreementAlgorithm
Source§impl Hash for KeyAgreementAlgorithm
impl Hash for KeyAgreementAlgorithm
Source§impl PartialEq for KeyAgreementAlgorithm
impl PartialEq for KeyAgreementAlgorithm
Source§fn eq(&self, other: &KeyAgreementAlgorithm) -> bool
fn eq(&self, other: &KeyAgreementAlgorithm) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for KeyAgreementAlgorithm
Auto Trait Implementations§
impl Freeze for KeyAgreementAlgorithm
impl RefUnwindSafe for KeyAgreementAlgorithm
impl Send for KeyAgreementAlgorithm
impl Sync for KeyAgreementAlgorithm
impl Unpin for KeyAgreementAlgorithm
impl UnsafeUnpin for KeyAgreementAlgorithm
impl UnwindSafe for KeyAgreementAlgorithm
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