You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
crypto_sign_keypair generates random numbers and then derives a key. We should use Random for random numbers and derive the key from that. It's exactly the same in production builds, but in fuzzing this ensures that we can fuzz NGC properly.
crypto_sign_keypair generates random numbers and then derives a key. We should use
Randomfor random numbers and derive the key from that. It's exactly the same in production builds, but in fuzzing this ensures that we can fuzz NGC properly.