linux_kcapi/lib.rs
1//! This crate provides tools for using crypto operation from the linux kernel.
2
3#![deny(missing_docs)]
4#![cfg_attr(feature = "cargo-clippy", deny(clippy::all))]
5#![cfg_attr(feature = "cargo-clippy", deny(clippy::pedantic))]
6
7mod err;
8pub mod internal;
9mod random;
10
11pub use err::Error;
12pub use random::{Rng, RngType};