Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 725 Bytes

File metadata and controls

23 lines (20 loc) · 725 Bytes

Pseudo random generator

Run on Ainize It provides crypto-secure pseudo-random number.

Docker build

docker build -t ${YOUR_DOCKER_HUB_ID}/png .

Docker run

docker run -p 80:80 -d ${YOUR_DOCKER_HUB_ID}/png

Now the server is available at http://localhost.

How to use it?

It generates pseudo random number based on given bits and form. Bits can be 2^n (default 2048bits). (output)Form can be either byte or hex. Count gets how many numbers will be generated.

http://localhost/?bits=${BITS}&form=${FORM}&count=${HOW_MANY_NUMBERS}