1
2
3
4
5
6
7
8
9
10
11
12
//! This crate provides tools for using crypto operation from the linux kernel.

#![deny(missing_docs)]
#![cfg_attr(feature = "cargo-clippy", deny(clippy::all))]
#![cfg_attr(feature = "cargo-clippy", deny(clippy::pedantic))]

mod err;
pub mod internal;
mod random;

pub use err::Error;
pub use random::{Rng, RngType};