[−][src]Struct x25519_dalek::EphemeralSecret
A EphemeralSecret
is a short lived Diffie-Hellman secret key
used to create a SharedSecret
when given their PublicKey
.
Methods
impl EphemeralSecret
[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]
T: RngCore + CryptoRng,
Generate an x25519 EphemeralSecret
key.
Trait Implementations
impl Drop for EphemeralSecret
[src]
impl<'a> From<&'a EphemeralSecret> for PublicKey
[src]
fn from(secret: &'a EphemeralSecret) -> PublicKey
[src]
Given an x25519 EphemeralSecret
key, compute its corresponding
PublicKey
key.
impl Zeroize for EphemeralSecret
[src]
Auto Trait Implementations
impl RefUnwindSafe for EphemeralSecret
impl Send for EphemeralSecret
impl Sync for EphemeralSecret
impl Unpin for EphemeralSecret
impl UnwindSafe for EphemeralSecret
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<Z> Zeroize for Z where
Z: DefaultIsZeroes,
[src]
Z: DefaultIsZeroes,