[][src]Struct x25519_dalek::StaticSecret

pub struct StaticSecret(_);

A StaticSecret is a static Diffie-Hellman secret key that can be saved and loaded to create a SharedSecret when given their PublicKey.

Methods

impl StaticSecret[src]

pub fn diffie_hellman(&self, their_public: &PublicKey) -> SharedSecret[src]

Perform a Diffie-Hellman key agreement between self and their_public key to produce a SharedSecret.

pub fn new<T>(csprng: &mut T) -> Self where
    T: RngCore + CryptoRng
[src]

Generate a x25519 StaticSecret key.

pub fn to_bytes(&self) -> [u8; 32][src]

Save a x25519 StaticSecret key's bytes.

Trait Implementations

impl From<[u8; 32]> for StaticSecret[src]

fn from(bytes: [u8; 32]) -> StaticSecret[src]

Load a StaticSecret from a byte array.

impl<'a> From<&'a StaticSecret> for PublicKey[src]

fn from(secret: &'a StaticSecret) -> PublicKey[src]

Given an x25519 StaticSecret key, compute its corresponding PublicKey key.

impl Drop for StaticSecret[src]

Overwrite static secret key material with null bytes when it goes out of scope.

impl Clone for StaticSecret[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> Same for T

type Output = T

Should always be Self