pub struct X25519KeyPair {
pub public_key: [u8; 32],
pub private_key: [u8; 32],
}Expand description
X25519 key pair used for Diffie-Hellman key exchange.
Fields§
§public_key: [u8; 32]Public key (safe to share).
private_key: [u8; 32]Private key material (keep secret).
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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Drop for X25519KeyPair
impl Drop for X25519KeyPair
Auto Trait Implementations§
impl Freeze for X25519KeyPair
impl RefUnwindSafe for X25519KeyPair
impl Send for X25519KeyPair
impl Sync for X25519KeyPair
impl Unpin for X25519KeyPair
impl UnsafeUnpin for X25519KeyPair
impl UnwindSafe for X25519KeyPair
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