Posts

Showing posts with the label example

Neural PRNG Example

  Java NPRNG Example Neural Pseudo-Random Number Generator (Android Java) App.java https://drive.google.com/file/d/1tCeqStW7ypx5B0wesBYwaVn2y1IQ07NK/view?usp=sharing MainActivity.java https://drive.google.com/file/d/1WDq33mgUecTM5V0GXcO5NSFoQqtXTuXo/view?usp=sharing The results of the work are output to Log - a pseudo-random 280-bit number (280x8 bit) The initial parameters (master key) are set in MainActivity.java App.java - computing class This is a simple working example. Generates a pseudo-random number of large dimension (any dimension). This class can be used to build huge NPRNG generators. Java NPRNG Example