├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── docs ├── api_reference.md ├── example_applications.md ├── performance_analysis.md ├── quantum_principles.md └── quantum_rng.md ├── examples ├── crypto │ ├── key_derivation.c │ ├── key_derivation.h │ ├── key_derivation_analysis.md │ ├── key_derivation_test.c │ ├── key_derivation_utils.c │ ├── key_exchange.c │ ├── key_exchange.h │ ├── key_exchange_analysis.md │ ├── key_exchange_test.c │ ├── quantum_chain.c │ ├── quantum_chain.h │ ├── quantum_chain_analysis.md │ └── quantum_chain_test.c ├── finance │ ├── monte_carlo.c │ ├── monte_carlo.h │ ├── monte_carlo_analysis.md │ └── monte_carlo_test.c └── games │ ├── quantum_dice.c │ ├── quantum_dice.h │ ├── quantum_dice_demo.c │ ├── quantum_dice_gui.c │ ├── quantum_dice_gui.md │ ├── quantum_dice_musical.c │ ├── quantum_dice_musical.md │ └── quantum_dice_test.c ├── src ├── common │ └── constants.h ├── quantum_rng │ ├── quantum_rng.c │ └── quantum_rng.h └── quantum_rng_cli.c └── tests ├── benchmark_matrix.c ├── benchmark_suite.c ├── comprehensive_test.c ├── edge_cases_test.c ├── quantum_stats.c ├── statistical ├── statistical_tests.c └── statistical_tests.h └── test_quantum_rng.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/README.md -------------------------------------------------------------------------------- /docs/api_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/docs/api_reference.md -------------------------------------------------------------------------------- /docs/example_applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/docs/example_applications.md -------------------------------------------------------------------------------- /docs/performance_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/docs/performance_analysis.md -------------------------------------------------------------------------------- /docs/quantum_principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/docs/quantum_principles.md -------------------------------------------------------------------------------- /docs/quantum_rng.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/docs/quantum_rng.md -------------------------------------------------------------------------------- /examples/crypto/key_derivation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/crypto/key_derivation.c -------------------------------------------------------------------------------- /examples/crypto/key_derivation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/crypto/key_derivation.h -------------------------------------------------------------------------------- /examples/crypto/key_derivation_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/crypto/key_derivation_analysis.md -------------------------------------------------------------------------------- /examples/crypto/key_derivation_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/crypto/key_derivation_test.c -------------------------------------------------------------------------------- /examples/crypto/key_derivation_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/crypto/key_derivation_utils.c -------------------------------------------------------------------------------- /examples/crypto/key_exchange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/crypto/key_exchange.c -------------------------------------------------------------------------------- /examples/crypto/key_exchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/crypto/key_exchange.h -------------------------------------------------------------------------------- /examples/crypto/key_exchange_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/crypto/key_exchange_analysis.md -------------------------------------------------------------------------------- /examples/crypto/key_exchange_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/crypto/key_exchange_test.c -------------------------------------------------------------------------------- /examples/crypto/quantum_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/crypto/quantum_chain.c -------------------------------------------------------------------------------- /examples/crypto/quantum_chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/crypto/quantum_chain.h -------------------------------------------------------------------------------- /examples/crypto/quantum_chain_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/crypto/quantum_chain_analysis.md -------------------------------------------------------------------------------- /examples/crypto/quantum_chain_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/crypto/quantum_chain_test.c -------------------------------------------------------------------------------- /examples/finance/monte_carlo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/finance/monte_carlo.c -------------------------------------------------------------------------------- /examples/finance/monte_carlo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/finance/monte_carlo.h -------------------------------------------------------------------------------- /examples/finance/monte_carlo_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/finance/monte_carlo_analysis.md -------------------------------------------------------------------------------- /examples/finance/monte_carlo_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/finance/monte_carlo_test.c -------------------------------------------------------------------------------- /examples/games/quantum_dice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/games/quantum_dice.c -------------------------------------------------------------------------------- /examples/games/quantum_dice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/games/quantum_dice.h -------------------------------------------------------------------------------- /examples/games/quantum_dice_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/games/quantum_dice_demo.c -------------------------------------------------------------------------------- /examples/games/quantum_dice_gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/games/quantum_dice_gui.c -------------------------------------------------------------------------------- /examples/games/quantum_dice_gui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/games/quantum_dice_gui.md -------------------------------------------------------------------------------- /examples/games/quantum_dice_musical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/games/quantum_dice_musical.c -------------------------------------------------------------------------------- /examples/games/quantum_dice_musical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/games/quantum_dice_musical.md -------------------------------------------------------------------------------- /examples/games/quantum_dice_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/examples/games/quantum_dice_test.c -------------------------------------------------------------------------------- /src/common/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/src/common/constants.h -------------------------------------------------------------------------------- /src/quantum_rng/quantum_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/src/quantum_rng/quantum_rng.c -------------------------------------------------------------------------------- /src/quantum_rng/quantum_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/src/quantum_rng/quantum_rng.h -------------------------------------------------------------------------------- /src/quantum_rng_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/src/quantum_rng_cli.c -------------------------------------------------------------------------------- /tests/benchmark_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/tests/benchmark_matrix.c -------------------------------------------------------------------------------- /tests/benchmark_suite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/tests/benchmark_suite.c -------------------------------------------------------------------------------- /tests/comprehensive_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/tests/comprehensive_test.c -------------------------------------------------------------------------------- /tests/edge_cases_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/tests/edge_cases_test.c -------------------------------------------------------------------------------- /tests/quantum_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/tests/quantum_stats.c -------------------------------------------------------------------------------- /tests/statistical/statistical_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/tests/statistical/statistical_tests.c -------------------------------------------------------------------------------- /tests/statistical/statistical_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/tests/statistical/statistical_tests.h -------------------------------------------------------------------------------- /tests/test_quantum_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsotchke/quantum_rng/HEAD/tests/test_quantum_rng.c --------------------------------------------------------------------------------