Generates a stream of random bytes of specified set and size.
This online tool generates a stream of given size and with given set of byte values and lets you download it. ¶
This tool uses two algorithms to generate random data: ¶
For performance reasons the first method (by PHP cycle) is used when set of allowed bytes is less than 45% of all possible values (that is, 256 * 0.45 = 115 and below). Otherwise the second method (reading /dev/urandom) is used. ¶
Fastest processing and best results (using /dev/urandom) is met when no bytes are restricted (or a small amount of them is left out). ¶