prople_crypto/lib.rs
1#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))]
2
3pub mod aead;
4pub mod ecdh;
5pub mod eddsa;
6pub mod errors;
7pub mod keysecure;
8pub mod passphrase;
9pub mod types;
10
11/// `external` used to re-export all cryptography libraries from `rst_common`
12pub mod external {
13 pub use rst_common::with_cryptography as crypto;
14}