Skip to content

Commit 1210af9

Browse files
author
Docs Syncer
committed
CI: ceb1e34
1 parent dd14f95 commit 1210af9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/reference/contracts/libs/crypto/ECDSA384.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ The function to verify the ECDSA signature
7676

7777
Parameters:
7878

79-
| Name | Type | Description |
80-
| :------------- | :------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
81-
| curveParams_ | struct ECDSA384.Parameters | the 384-bit curve parameters. `lowSmax` is `n / 2`. |
82-
| hashedMessage_ | bytes | the already hashed message to be verified. |
83-
| signature_ | bytes | the ECDSA signature. Equals to `bytes(r) + bytes(s)`. |
84-
| 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`. |
79+
| Name | Type | Description |
80+
| :------------- | :------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
81+
| curveParams_ | struct ECDSA384.Parameters | the 384-bit curve parameters. `lowSmax` is `n / 2`. |
82+
| hashedMessage_ | bytes | the already hashed message to be verified. |
83+
| signature_ | bytes | the ECDSA signature. Equals to `bytes(r) + bytes(s)`. |
84+
| 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

Comments
 (0)