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
//! Common message types.

mod ciphertext_message;
mod pre_key_signal_message;
mod signal_message;

pub use self::{
    ciphertext_message::{CiphertextMessage, CiphertextType},
    pre_key_signal_message::PreKeySignalMessage,
    signal_message::SignalMessage,
};