pub struct Session<SessionKey: ByteArray<CRYPTO_KX_SESSIONKEYBYTES> + Zeroize> { /* private fields */ }
Expand description
Key derivation implemantation based on Curve25519, Diffie-Hellman, and
Blake2b. Compatible with libsodium’s crypto_kx_*
functions.
Implementations§
source§impl<SessionKey: NewByteArray<CRYPTO_KX_SESSIONKEYBYTES> + Zeroize> Session<SessionKey>
impl<SessionKey: NewByteArray<CRYPTO_KX_SESSIONKEYBYTES> + Zeroize> Session<SessionKey>
sourcepub fn new_client<PublicKey: ByteArray<CRYPTO_KX_PUBLICKEYBYTES> + Zeroize, SecretKey: ByteArray<CRYPTO_KX_SECRETKEYBYTES> + Zeroize>(
client_keypair: &KeyPair<PublicKey, SecretKey>,
server_public_key: &PublicKey,
) -> Result<Self, Error>
pub fn new_client<PublicKey: ByteArray<CRYPTO_KX_PUBLICKEYBYTES> + Zeroize, SecretKey: ByteArray<CRYPTO_KX_SECRETKEYBYTES> + Zeroize>( client_keypair: &KeyPair<PublicKey, SecretKey>, server_public_key: &PublicKey, ) -> Result<Self, Error>
Computes client session keys, given client_keypair
and
server_public_key
, returning a new session upon success.
sourcepub fn new_server<PublicKey: ByteArray<CRYPTO_KX_PUBLICKEYBYTES> + Zeroize, SecretKey: ByteArray<CRYPTO_KX_SECRETKEYBYTES> + Zeroize>(
server_keypair: &KeyPair<PublicKey, SecretKey>,
client_public_key: &PublicKey,
) -> Result<Self, Error>
pub fn new_server<PublicKey: ByteArray<CRYPTO_KX_PUBLICKEYBYTES> + Zeroize, SecretKey: ByteArray<CRYPTO_KX_SECRETKEYBYTES> + Zeroize>( server_keypair: &KeyPair<PublicKey, SecretKey>, client_public_key: &PublicKey, ) -> Result<Self, Error>
Computes server session keys, given server_keypair
and
client_public_key
, returning a new session upon success.
source§impl Session<SessionKey>
impl Session<SessionKey>
sourcepub fn new_client_with_defaults<PublicKey: ByteArray<CRYPTO_KX_PUBLICKEYBYTES> + Zeroize, SecretKey: ByteArray<CRYPTO_KX_SECRETKEYBYTES> + Zeroize>(
client_keypair: &KeyPair<PublicKey, SecretKey>,
server_public_key: &PublicKey,
) -> Result<Self, Error>
pub fn new_client_with_defaults<PublicKey: ByteArray<CRYPTO_KX_PUBLICKEYBYTES> + Zeroize, SecretKey: ByteArray<CRYPTO_KX_SECRETKEYBYTES> + Zeroize>( client_keypair: &KeyPair<PublicKey, SecretKey>, server_public_key: &PublicKey, ) -> Result<Self, Error>
Returns a new client session upon success using the default types for
the given client_keypair
and server_public_key
. Wraps
Session::new_client
, provided for convenience.
sourcepub fn new_server_with_defaults<PublicKey: ByteArray<CRYPTO_KX_PUBLICKEYBYTES> + Zeroize, SecretKey: ByteArray<CRYPTO_KX_SECRETKEYBYTES> + Zeroize>(
server_keypair: &KeyPair<PublicKey, SecretKey>,
client_public_key: &PublicKey,
) -> Result<Self, Error>
pub fn new_server_with_defaults<PublicKey: ByteArray<CRYPTO_KX_PUBLICKEYBYTES> + Zeroize, SecretKey: ByteArray<CRYPTO_KX_SECRETKEYBYTES> + Zeroize>( server_keypair: &KeyPair<PublicKey, SecretKey>, client_public_key: &PublicKey, ) -> Result<Self, Error>
Returns a new server session upon success using the default types for
the given server_keypair
and client_public_key
. Wraps
Session::new_server
, provided for convenience.
source§impl<SessionKey: ByteArray<CRYPTO_KX_SESSIONKEYBYTES> + Zeroize> Session<SessionKey>
impl<SessionKey: ByteArray<CRYPTO_KX_SESSIONKEYBYTES> + Zeroize> Session<SessionKey>
sourcepub fn into_parts(self) -> (SessionKey, SessionKey)
pub fn into_parts(self) -> (SessionKey, SessionKey)
Moves the rx_key and tx_key out of this instance, returning them as a
tuple with (rx_key, tx_key)
.
sourcepub fn rx_as_slice(&self) -> &[u8] ⓘ
pub fn rx_as_slice(&self) -> &[u8] ⓘ
Returns a reference to a slice of the Rx session key.
sourcepub fn tx_as_slice(&self) -> &[u8] ⓘ
pub fn tx_as_slice(&self) -> &[u8] ⓘ
Returns a reference to a slice of the Tx session key.
sourcepub fn rx_as_array(&self) -> &[u8; 32]
pub fn rx_as_array(&self) -> &[u8; 32]
Returns a reference to an array of the Rx session key.
sourcepub fn tx_as_array(&self) -> &[u8; 32]
pub fn tx_as_array(&self) -> &[u8; 32]
Returns a reference to an array of the Tx session key.
Trait Implementations§
source§impl<SessionKey: Clone + ByteArray<CRYPTO_KX_SESSIONKEYBYTES> + Zeroize> Clone for Session<SessionKey>
impl<SessionKey: Clone + ByteArray<CRYPTO_KX_SESSIONKEYBYTES> + Zeroize> Clone for Session<SessionKey>
source§impl<SessionKey: Debug + ByteArray<CRYPTO_KX_SESSIONKEYBYTES> + Zeroize> Debug for Session<SessionKey>
impl<SessionKey: Debug + ByteArray<CRYPTO_KX_SESSIONKEYBYTES> + Zeroize> Debug for Session<SessionKey>
source§impl<'de, SessionKey> Deserialize<'de> for Session<SessionKey>
impl<'de, SessionKey> Deserialize<'de> for Session<SessionKey>
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Auto Trait Implementations§
impl<SessionKey> Freeze for Session<SessionKey>where
SessionKey: Freeze,
impl<SessionKey> RefUnwindSafe for Session<SessionKey>where
SessionKey: RefUnwindSafe,
impl<SessionKey> Send for Session<SessionKey>where
SessionKey: Send,
impl<SessionKey> Sync for Session<SessionKey>where
SessionKey: Sync,
impl<SessionKey> Unpin for Session<SessionKey>where
SessionKey: Unpin,
impl<SessionKey> UnwindSafe for Session<SessionKey>where
SessionKey: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)