Files
RedBear-OS/Cargo.toml
T
Kalfar 0eb534417e Change PRNG to be ChaCha20 PRNG and seeding with 512 bits of entropy from rdrand (if available)
Add permissions to scheme operations
Add ability to change owner/group/mode
Add ability to write entropy to the PRNG scheme
Add streaming of ChaCha20 PRNG output based on file open operation.
Add not seeded message if rdrand not present on CPU
Add extra TODOs for new future work
2020-01-14 05:41:39 +00:00

13 lines
203 B
TOML

[package]
name = "randd"
version = "0.1.0"
[dependencies]
rand_chacha = "0.2"
rand_core = "0.5"
redox_syscall = "0.1"
sha2 = "0.8"
[target.'cfg(target_arch = "x86_64")'.dependencies]
raw-cpuid = "2.0"