linux-kcapi 0.1.1

Tools for using crypto operation from the linux kernel
Documentation
//! 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};