- In PHP library, switched from using
array_rand()
to usingrandom_int()
, the latter being suitable for cryptographic applications - In JavaScript library, switch from using
Math.random()
to usingCrypto.getRandomValues()
, the latter, while still a PRNG, is suitable for cryptographic applications
First public release.