pub struct X25519KeyPair {
pub private_key: [u8; 32],
pub public_key: [u8; 32],
}Expand description
X25519 key pair (Curve25519 Diffie-Hellman)
Uses the real X25519 scalar multiplication from crate::crypto::asymmetric
for public key derivation and Diffie-Hellman key exchange.
Fields§
§private_key: [u8; 32]§public_key: [u8; 32]Implementations§
Trait Implementations§
Source§impl Clone for X25519KeyPair
impl Clone for X25519KeyPair
Source§fn clone(&self) -> X25519KeyPair
fn clone(&self) -> X25519KeyPair
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for X25519KeyPair
impl RefUnwindSafe for X25519KeyPair
impl Send for X25519KeyPair
impl Sync for X25519KeyPair
impl Unpin for X25519KeyPair
impl UnwindSafe for X25519KeyPair
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)