php-ext-orng icon indicating copy to clipboard operation
php-ext-orng copied to clipboard

Object scoped RNG implementation for PHP.

Results 4 php-ext-orng issues
Sort by recently updated
recently updated
newest added
trafficstars

here's a suggestion for a csprng :,http://burtleburtle.net/bob/rand/isaac.html

Serializing the RNG state is very useful.

7.0 -> 7.1 - srand() / rand() function to alias for the `mt_srand()` / `mt_rand()` function. - But, `str_shuffle()` function still depends on libc. 7.1 -> 7.2 - Fixed of...

Docs
FIXME

https://github.com/zeriyoshi/php-ext-orng/blob/master/rng/glibcrand.c#L287 https://github.com/zeriyoshi/php-ext-orng/blob/master/rng/mt19937.c#L222 https://github.com/zeriyoshi/php-ext-orng/blob/master/rng/xorshift128plus.c#L176

FIXME
Refactor