caprand 0.2.1

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

#![no_std]


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

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