caprand 0.3.0

RP2040 secure random number generator by timing capacitor pullup
1
2
3
4
5
6
7
8
#![doc = include_str!("../README.md")]
#![no_std]

pub mod cap;
pub mod health;
pub mod rng;

pub use rng::{getrandom, getrandom_raw, setup, CapRng};