ssb_handshake/crypto.rs
1//! Internal types used in the implementation of the handshake.
2//! The ClientPublicKey, etc types are simply wrappers around basic crypto types,
3//! to avoid bugs caused by e.g. using the wrong keys in the wrong places.
4
5pub mod keys;
6pub mod message;
7pub mod outcome;
8pub mod shared_secret;