Struct x25519_dalek::StaticSecret [−][src]
pub struct StaticSecret(_);
A Diffie-Hellman secret key that can be used to compute multiple SharedSecret
s.
This type is identical to the EphemeralSecret
type, except that the
StaticSecret::diffie_hellman
method does not consume the secret key, and the type provides
serialization methods to save and load key material. This means that the secret may be used
multiple times (but does not have to be).
Some protocols, such as Noise, already handle the static/ephemeral distinction, so the
additional guarantees provided by EphemeralSecret
are not helpful or would cause duplicate
code paths. In this case, it may be useful to
use x25519_dalek::StaticSecret as SecretKey;
since the only difference between the two is that StaticSecret
does not enforce at
compile-time that the key is only used once.
Implementations
impl StaticSecret
[src]
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: RngCore + CryptoRng>(csprng: T) -> Self
[src]
Generate an x25519 key.
pub fn to_bytes(&self) -> [u8; 32]
[src]
Extract this key’s bytes for serialization.
Trait Implementations
impl Clone for StaticSecret
[src]
impl Clone for StaticSecret
[src]fn clone(&self) -> StaticSecret
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Drop for StaticSecret
[src]
impl Drop for StaticSecret
[src]impl<'a> From<&'a StaticSecret> for PublicKey
[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
.
impl Zeroize for StaticSecret
[src]
impl Zeroize for StaticSecret
[src]