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.
The text was updated successfully, but these errors were encountered:
Do you mean write fuzzer-only re-implementation of the libsodium function? I wouldn't want to be re-implementing libsodium internals in production. Even if it's a copy-paste job there are numerous issues with that.
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.The text was updated successfully, but these errors were encountered: