|
|
|
|
|
by juancn
39 days ago
|
|
Something off on how the RNG is initialized?
Lack of entropy? If the rng is not customized it will use: const rnds8 = new Uint8Array(16);
export default function rng() {
return crypto.getRandomValues(rnds8);
}
getRandomValues doesn't specify a minimum amount of entropy. |
|
It's probably messing up the cryptography, too.