-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
crypto.ecdsa: expand ecdsa module, to support other curves like secp3…
…84r1, secp521r1, secp256k1 (#23407)
- Loading branch information
1 parent
81b421b
commit 68c2da2
Showing
6 changed files
with
460 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## ecdsa | ||
|
||
`ecdsa` module for V language. Its a wrapper on top of openssl ecdsa functionality. | ||
Its currently (expanded) to support the following curves: | ||
- NIST P-256 curve, commonly referred as prime256v1 or secp256r1 | ||
- NIST P-384 curve, commonly referred as secp384r1 | ||
- NIST P-521 curve, commonly referred as secp521r1 | ||
- A famous Bitcoin curve, commonly referred as secp256k1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.