tfhe-csprng 0.9.0

Cryptographically Secure PRNG used in the TFHE-rs library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(target_os = "macos")]
mod apple_secure_enclave_seeder;
#[cfg(target_os = "macos")]
pub use apple_secure_enclave_seeder::AppleSecureEnclaveSeeder;

#[cfg(target_arch = "x86_64")]
mod rdseed;
#[cfg(target_arch = "x86_64")]
pub use rdseed::RdseedSeeder;

#[cfg(target_family = "unix")]
mod unix;
#[cfg(target_family = "unix")]
pub use unix::UnixSeeder;