Skip to content

Commit

Permalink
fixed typo in ECDSA384
Browse files Browse the repository at this point in the history
  • Loading branch information
aritkulova committed Nov 25, 2024
1 parent 14773f4 commit 1d25e81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/libs/crypto/ECDSA384.sol
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ library ECDSA384 {
* @param pubKey_ the full public key of a signer. Equals to `bytes(x) + bytes(y)`.
*
* Note that signatures only from the lower part of the curve are accepted.
* If your `s >= n / 2`, change it to `s = n - s`.
* If your `s > n / 2`, change it to `s = n - s`.
*/
function verify(
Parameters memory curveParams_,
Expand Down

0 comments on commit 1d25e81

Please sign in to comment.