enigma-identity 0.1.0

Enigma Identity: local identity + X3DH bundle + shared secret derivation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod error;
pub mod identity;
pub mod types;
pub mod x3dh;

#[cfg(test)]
mod tests;

pub use error::{EnigmaIdentityError, Result};
pub use identity::LocalIdentity;
pub use types::{LocalUser, SharedSecret, X3dhBundle, X3dhInitiation, X3dhResponderKeys};
pub use x3dh::{x3dh_initiate, x3dh_respond};