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
For example ecdsa keygen is currently broken for two reasons:
we don't produce values within the scalar field r = n/h
we don't exclude trivial scalar values (i.e. 1 and r-1)
Curves included within the library have all cofactor h=1, but we should be more generic to allow the user to plug-in other curve params (e.g. secp112r2 has h=4)
The text was updated successfully, but these errors were encountered:
Add cofactor (h) to curve group structure.
Mostly used as the generator order.
For example ecdsa keygen is currently broken for two reasons:
Curves included within the library have all cofactor h=1, but we should be more generic to allow the user to plug-in other curve params (e.g. secp112r2 has h=4)
The text was updated successfully, but these errors were encountered: