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
| curveParams_| struct ECDSA256.Parameters | the 256-bit curve parameters. `lowSmax` is `n / 2`. |
77
+
| hashedMessage_| bytes32 | the already hashed message to be verified. |
78
+
| signature_| bytes | the ECDSA signature. Equals to `bytes(r) + bytes(s)`. |
79
+
| pubKey_| bytes | 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`. |
0 commit comments