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
Currently, we use this logic to check that a scalar is canonical, this is also used in the deserialization of private nonces, which should be secret.
We want this to be constant time, which neither the bytes[31] & 240 == 0 check nor the from_canonical_bytes function are constant time.
Currently, we use this logic to check that a scalar is canonical, this is also used in the deserialization of private nonces, which should be secret.
We want this to be constant time, which neither the
bytes[31] & 240 == 0
check nor thefrom_canonical_bytes
function are constant time.two-party-musig2-eddsa/src/lib.rs
Lines 383 to 386 in e7b8b2e
The text was updated successfully, but these errors were encountered: