libsignal-protocol 0.1.0

An idiomatic high-level interface to the libsignal-protocol-c crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Elliptic curve cryptography keys.

mod identity_key_pair;
mod key_pair;
mod pre_key;
mod pre_key_list;
mod private;
mod public;
mod signed_pre_key;

pub use self::{
    identity_key_pair::IdentityKeyPair, key_pair::KeyPair, pre_key::PreKey,
    pre_key_list::PreKeyList, private::PrivateKey, public::PublicKey,
    signed_pre_key::SessionSignedPreKey,
};