[][src]Struct x25519_dalek::EphemeralSecret

pub struct EphemeralSecret(_);

A DH ephemeral secret key.

Methods

impl EphemeralSecret
[src]

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

Utility function to make it easier to call x25519() with an ephemeral secret key and montegomery point as input and a shared secret as the output.

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

Generate an x25519 EphemeralSecret key.

Trait Implementations

impl<'a> From<&'a EphemeralSecret> for EphemeralPublic
[src]

fn from(secret: &'a EphemeralSecret) -> EphemeralPublic
[src]

Given an x25519 EphemeralSecret key, compute its corresponding EphemeralPublic key.

impl Drop for EphemeralSecret
[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> From for T
[src]

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

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

🔬 This is a nightly-only experimental API. (try_from)

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> Same for T

type Output = T

Should always be Self