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
ATM FromUniformBytes<64> is required in several parts of the codebase, mainly in the backend.
The trait description states:
/// For security, `N` must be chosen so that `N * 8 >= Self::NUM_BITS + 128`. A larger
/// value of `N` may be chosen for convenience; for example, for a field with a 255-bit
/// modulus, `N = 64` is convenient as it matches the output length of several common
/// cryptographic hash functions (such as SHA-512 and BLAKE2b).
ATM
FromUniformBytes<64>
is required in several parts of the codebase, mainly in the backend.The trait description states:
Consequently, this is fine for most fields but may be an issue for large ones.
see: privacy-scaling-explorations/halo2curves#146 (comment)
The text was updated successfully, but these errors were encountered: