ncryptf/
lib.rs

1/// Ncryptf version 2 magic header
2const VERSION_2_HEADER: &str = "DE259002";
3const NCRYPTF_CURRENT_VERSION: i8 = 2;
4
5mod token;
6pub use token::Token;
7mod keypair;
8pub use keypair::Keypair;
9mod request;
10pub use request::Request;
11mod response;
12pub use response::Response;
13mod error;
14pub use error::NcryptfError;
15mod authorization;
16pub use authorization::Authorization;
17mod signature;
18pub use signature::Signature;
19mod util;
20pub use util::randombytes_buf;
21pub mod shared;
22
23#[cfg(feature = "rocket")]
24pub mod rocket;
25
26#[cfg(feature = "client")]
27pub mod client;