osom_lib_entropy 0.1.4

OS-backed entropy collection for osom_lib.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! This crate defines entropy generators. Here by "entropy"
//! we mean "true" (or close enough) randomness. We can think
//! of it as (potentially) slow random number generators, but
//! with high quality randomness.
//!
//! The crate is `#![no_std]`. But it does use external
//! os specific dependencies (e.g. `libc` or `windows-sys`).
#![deny(warnings)]
#![allow(unused_features)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(docsrs, allow(unused_attributes))]
#![warn(clippy::all, clippy::pedantic)]
#![allow(clippy::inline_always)]
#![no_std]

pub mod std;
pub mod traits;