An open API service indexing awesome lists of open source software.

https://github.com/mberry/mixrng

XOR's entropy from an inbuilt and hardware CSRNG
https://github.com/mberry/mixrng

Last synced: about 1 year ago
JSON representation

XOR's entropy from an inbuilt and hardware CSRNG

Awesome Lists containing this project

README

          

# MixRNG

XOR bits from inbuilt and hardware CSRNG. This process ensures that the quality of entropy gathered is a strong as the strongest source.

Hardcoded settings for OneRNG, if using different hardware check serial settings first.

http://onerng.info

---

## Usage

```python
from MixRNG import mixrng, extrng

random_xor_bytes = mixrng(32)

random_mixrng_bytes_only = extrng(32)

```