ncryptf-rs 0.5.7

Secure API authentication and end to end encryption.
Documentation
/// Ncryptf version 2 magic header
const VERSION_2_HEADER: &str = "DE259002";
const NCRYPTF_CURRENT_VERSION: i8 = 2;

mod token;
pub use token::Token;
mod keypair;
pub use keypair::Keypair;
mod request;
pub use request::Request;
mod response;
pub use response::Response;
mod error;
pub use error::NcryptfError;
mod authorization;
pub use authorization::Authorization;
mod signature;
pub use signature::Signature;
mod util;
pub use util::randombytes_buf;
pub mod shared;

#[cfg(feature = "rocket")]
pub mod rocket;

#[cfg(feature = "client")]
pub mod client;