• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

benches/H03-May-2022-13288

src/H03-May-2022-499270

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D01-Jan-197074 65

.gitignoreH A D08-Nov-201520 32

Cargo.tomlH A D01-Jan-1970998 2926

Cargo.toml.orig-cargoH A D18-Dec-2018482 1714

LICENSEH A D08-Nov-2015736 1310

README.mkdH A D17-Nov-2018498 96

appveyor.ymlH A D18-Dec-2018747 2825

README.mkd

1An implementation of random number generators based on `rdrand` and `rdseed` instructions.
2
3The random number generators provided by this crate are fairly slow (the latency for these
4instructions is pretty high), but provide high quality random bits. Caveat is: neither AMD’s
5nor Intel’s designs are public and therefore are not verifiable for lack of backdoors.
6
7Unless you know what you are doing, use the random number generators provided by the `rand`
8crate (such as `EntropyRng`) instead.
9