What is this library for?
What would we possibly benefit from it?
This alternative for all random number generators, enables the user to choose at run-time any file, stream or keyboard as source of entropy.
+ Sounds a little bit disappointing. You are still using rand().
+ CPlusPlus now have an even better standard random library (#include <random> )
+ It takes too many steps to set up your library and compile it. What a pain.
Hi, thank you very much for your feedback! Kind regards,
What is this library for?
To get random numbers (entropy) from stdin.
What would we possibly benefit from it?
The user is able to choose which source of entropy (random numbers) to use at run-time.
+ Sounds a little bit disappointing. You are still using rand().
This library only uses the c standrad input output library #include<cstdio>
+ CPlusPlus now have an even better standard random library (#include <random> )
It is a set of pseudo-random number geneartors, which without seed output 0 ubits/1 bits plus an interface to a hardware random number generator if available. Please note that there are possibilities of generating true random numbers without a special device, and those methods are not included inside the library #include<random>
+ It takes too much steps to set up your library and compile it. What a pain.