Python interface to Intel hardware rng
Project description
A module to use Intel’s hardware RNG with python’s random class
USAGE
>>> from rdrand import RdRandom >>> r = RdRandom()
At this point, r will behave just like random
RdRandom is a subclass of random.Random, and behaves like random.Random, but it uses inline assembly to access the hardware RNG. This should be a cryptographically secure drop in replacement for random, if the Intel random number generator is valid. No mitigation is done to modify the output of the hardware to prevent problems with Intel’s implementation. Caveat Emptor.
Also, it includes the function r.getrandombytes(i) where i is a positive int. This returns a string of length i filled with random bytes, which is ideal for generating a key or using directly in a protocol.
Please note, as with any security solution, it is possible to subvert this. Please understand the full context before deploying. I am not liable for misuse or clever hackers.
Works with 32 and 64 bit builds of python.
Works with python2 and python3.
Planned for version 2: various mitigations to whiten the random numbers in case you don’t trust Intel.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file rdrand-0.9.9.tar.gz
.
File metadata
- Download URL: rdrand-0.9.9.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb6d8bba698e8ed350a717d2baab097a029c8d54bf82f715307e6e87b0d517c7 |
|
MD5 | f48baffb437d1befe5db10c0eaae295d |
|
BLAKE2b-256 | a2ed315c4c4ca23cdbc29de33727b32b44444293142720ecb066d7e8a01d873f |