Entro Spin
Description
Entro Spin is a 64-bit, seedless, non-deterministic true random number generator algorithm.
Code Example
The following code demonstrates an example implementation included in this package.
To test the Cargo package, execute the following command.
cargo test
Explanation
EntroCraft maintains this open-source package with the permissive MIT license.
The only valid source of true entropy is high-resolution, linear time with a significantly-higher precision relative to the precision of the random result.
With this in mind, each digit in each randomly-generated 64-bit number is randomized with Entro Shift and UNIX_EPOCH with nanosecond precision.
High-resolution system time with a minimum precision of milliseconds is required, although nanosecond precision is recommended.
It relies on SystemTime, so a system clock failure translates to a program runtime failure.