kyber-rs 0.1.0-alpha.9

A toolbox of advanced cryptographic primitives for Rust
Documentation
#[macro_use]
extern crate impl_ops;

pub mod cipher;
pub mod dh;
pub mod encoding;
pub mod encrypt;
mod examples;
pub mod group;
pub mod random;
pub mod share;
pub mod sign;
pub mod util;
mod xof;

extern crate core;

pub use group::Group;
pub use group::Point;
pub use group::Scalar;
pub use random::Random;
pub use xof::{XOFFactory, XOF};