rdrand 0.0.3

An implementation of random number generator based on rdrand instruction
docs.rs failed to build rdrand-0.0.3
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: rdrand-0.8.3

An implementation of random number generator based on rdrand instruction.

rdrand is claimed to be a cryptographically secure PRNG. It is much faster than OsRng (and slower than StdRng), but is only supported on more recent Intel processors.

The generator provided by this crate is a viable replacement to any std::rand generator, however, since nobody has audited Intel hardware yet, the usual disclaimers apply.