├── .gitignore ├── LICENSE ├── README.md ├── binding.gyp ├── package.json ├── railway.toml ├── server.js └── src ├── binding.cc ├── common └── constants.h └── quantum_rng ├── quantum_rng.c └── quantum_rng.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotchke-Corporation/Quantum-RNG-API/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotchke-Corporation/Quantum-RNG-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotchke-Corporation/Quantum-RNG-API/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotchke-Corporation/Quantum-RNG-API/HEAD/binding.gyp -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotchke-Corporation/Quantum-RNG-API/HEAD/package.json -------------------------------------------------------------------------------- /railway.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotchke-Corporation/Quantum-RNG-API/HEAD/railway.toml -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotchke-Corporation/Quantum-RNG-API/HEAD/server.js -------------------------------------------------------------------------------- /src/binding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotchke-Corporation/Quantum-RNG-API/HEAD/src/binding.cc -------------------------------------------------------------------------------- /src/common/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotchke-Corporation/Quantum-RNG-API/HEAD/src/common/constants.h -------------------------------------------------------------------------------- /src/quantum_rng/quantum_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotchke-Corporation/Quantum-RNG-API/HEAD/src/quantum_rng/quantum_rng.c -------------------------------------------------------------------------------- /src/quantum_rng/quantum_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotchke-Corporation/Quantum-RNG-API/HEAD/src/quantum_rng/quantum_rng.h --------------------------------------------------------------------------------