pub trait Ecdh {
    fn key_exchange(&self, their_public: &Self) -> Vec<u8, Global>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
; }
Expand description

Used for Elliptic-curve Diffie–Hellman key exchange operations

Required Methods

Perform key exchange operation

Implementors