Chaos-based random number generator using three-body dynamics
Project description
Chaos RNG
Chaos RNG is a Python library for generating random numbers from chaotic three-body dynamics, with NumPy-compatible generators and optional cryptographic post-processing utilities.
This project is currently documented README-first for the 0.1.x releases.
Installation
Core package:
pip install chaos-rng
With optional crypto and test utilities:
pip install "chaos-rng[crypto,test]"
Quick Start
from chaos_rng import ThreeBodyRNG
rng = ThreeBodyRNG(seed=42)
print(rng.random(5)) # floats in [0, 1)
print(rng.randint(0, 10, 5)) # integers
print(rng.bytes(16).hex()) # raw bytes
Notes:
- First calls may be slower because numerical kernels warm up (Numba/JIT).
- Use a fixed
seedfor reproducible tests and experiments.
NumPy Integration
from chaos_rng.generators import create_chaos_generator
gen = create_chaos_generator(seed=42)
normal = gen.normal(size=1000)
uniform = gen.uniform(0, 10, size=100)
integers = gen.integers(0, 100, size=50)
Optional Crypto Utilities
The crypto extra provides helper utilities for secure seeding and
post-processing. These tools are useful for experimentation and integration,
but this project should not be treated as a drop-in replacement for a
security-audited cryptographic RNG.
from chaos_rng import ThreeBodyRNG
from chaos_rng.security import CryptoPostProcessor, SecureSeed
seed = SecureSeed().generate_seed()
rng = ThreeBodyRNG(seed=seed)
raw = rng.bytes(64)
processed = CryptoPostProcessor(method="hash").process(raw)
print(len(processed))
Validation Utilities (Optional / Expensive)
Validation helpers are included under chaos_rng.utils.validation. They can be
computationally expensive and are best used for offline analysis.
from chaos_rng import ThreeBodyRNG
from chaos_rng.utils.validation import EntropyValidator
rng = ThreeBodyRNG(seed=42)
bits = (rng.random(10000) * 2).astype(int)
validator = EntropyValidator()
result = validator.validate_entropy_rate(bits)
print(result)
NISTTestSuite and ContinuousValidator are also available, but they are not
part of the default CI gate in 0.1.2.
Performance and Caveats
- This library prioritizes clarity and reproducibility over minimal dependency
footprint (
numpy,scipy,numba). - Some operations are expensive for large sample sizes.
- Cryptographic helpers are optional and not a substitute for audited crypto libraries or formal security review.
Development
Common commands:
make install-dev
make lint
make test
make test-slow
make build
make check-build
Local release gate:
make release-check
Release Flow (0.1.x)
The intended release path is:
- Tag release (
v0.1.2) - Publish to TestPyPI
- Smoke-test install from TestPyPI
- Publish to PyPI
GitHub Actions workflows:
CI(.github/workflows/ci.yml)Release(.github/workflows/release.yml)
License
MIT License. See LICENSE.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file chaos_rng-0.1.2.tar.gz.
File metadata
- Download URL: chaos_rng-0.1.2.tar.gz
- Upload date:
- Size: 39.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a80315dc741c283071be288826f02392e9355893a0ca63972501f5b61138d9d5
|
|
| MD5 |
2716b32b41130ea85c28dd371db37671
|
|
| BLAKE2b-256 |
4cf4637c474103aee12601e4c3c8469ea31a6388ccad881944c4cb16a1a8f7f4
|
File details
Details for the file chaos_rng-0.1.2-py3-none-any.whl.
File metadata
- Download URL: chaos_rng-0.1.2-py3-none-any.whl
- Upload date:
- Size: 37.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a0607034b66e829991f8d68ad8142f36047a1c24834b1821045993dbbfe59bb
|
|
| MD5 |
f0dea7babbba0f592891ff9df8ea7392
|
|
| BLAKE2b-256 |
d89bf2ea57555b8f854b4f83ee1ea59231b05e808a0b61f4a031a4be7dc68f8b
|