[−][src]Struct x25519_dalek::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]
T: RngCore + CryptoRng,
Generate a x25519 StaticSecret
key.
pub fn to_bytes(&self) -> [u8; 32]
[src]
Save a x25519 StaticSecret
key's bytes.
Trait Implementations
impl Clone for StaticSecret
[src]
fn clone(&self) -> StaticSecret
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Drop for StaticSecret
[src]
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 From<[u8; 32]> for StaticSecret
[src]
impl Zeroize for StaticSecret
[src]
Auto Trait Implementations
impl RefUnwindSafe for StaticSecret
impl Send for StaticSecret
impl Sync for StaticSecret
impl Unpin for StaticSecret
impl UnwindSafe for StaticSecret
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> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
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,