-
Notifications
You must be signed in to change notification settings - Fork 488
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add: EIP7217/PIP27 implementation and related test cases --------- Co-authored-by: Ulaş Erdoğan <uerdogan2001@hotmail.com>
- Loading branch information
1 parent
20f9295
commit f57c637
Showing
7 changed files
with
152 additions
and
13 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
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,37 @@ | ||
[ | ||
{ | ||
"Input": "4cee90eb86eaa050036147a12d49004b6b9c72bd725d39d4785011fe190f0b4da73bd4903f0ce3b639bbbf6e8e80d16931ff4bcf5993d58468e8fb19086e8cac36dbcd03009df8c59286b162af3bd7fcc0450c9aa81be5d10d312af6c66b1d604aebd3099c618202fcfe16ae7770b0c49ab5eadf74b754204a3bb6060e44eff37618b065f9832de4ca6ca971a7a1adc826d0f7c00181a5fb2ddf79ae00b4e10e", | ||
"Expected": "0000000000000000000000000000000000000000000000000000000000000001", | ||
"Gas": 3450, | ||
"Name": "CallP256Verify", | ||
"NoBenchmark": false | ||
}, | ||
{ | ||
"Input": "b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9414de3726ee4d237b410c1d85ebcb05553dc578561d9f7942b7250795beb9b9027b657067322fc00ab35263fde0acabf998cd9fcf1282df9555f85dba7bdbbe2dc90f74c9e210bc3e0c60aeaa03729c9e6acde4a048ee58fd2e466c1e7b0374e606b8c22ad2985df7d792ff344f03ce94a079da801006b13640bc5af7932a7b9", | ||
"Expected": "0000000000000000000000000000000000000000000000000000000000000001", | ||
"Gas": 3450, | ||
"Name": "CallP256Verify", | ||
"NoBenchmark": false | ||
}, | ||
{ | ||
"Input": "b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9b35d6a4f7f6fc5620c97d4287696f5174b3d37fa537b74b5fc26997ba79c725d62fe5e5fe6da76eec924e822c5ef853ede6c17069a9e9133a38f87d61599f68e7d5f3c812a255436846ee84a262b79ec4d0783afccf2433deabdca9ecf62bef5ff24e90988c7f139d378549c3a8bc6c94e6a1c911c1e02e6f48ed65aaf3d296e", | ||
"Expected": "0000000000000000000000000000000000000000000000000000000000000001", | ||
"Gas": 3450, | ||
"Name": "CallP256Verify", | ||
"NoBenchmark": false | ||
}, | ||
{ | ||
"Input": "b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9c29c3df6ce3431b6f030b1b68b1589508ad9d1a149830489c638653aa4b08af93f6e86a9a7643403b6f5c593410d9f7234a8cd27309bce90447073ce17476850615ff147863bc8652be1e369444f90bbc5f9df05a26362e609f73ab1f1839fe3cd34fd2ae672c110671d49115825fc56b5148321aabe5ba39f2b46f71149cff9", | ||
"Expected": "", | ||
"Gas": 3450, | ||
"Name": "CallP256Verify", | ||
"NoBenchmark": false | ||
}, | ||
{ | ||
"Input": "b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9", | ||
"Expected": "", | ||
"Gas": 3450, | ||
"Name": "CallP256Verify", | ||
"NoBenchmark": false | ||
} | ||
] |
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,26 @@ | ||
package secp256r1 | ||
|
||
import ( | ||
"crypto/ecdsa" | ||
"crypto/elliptic" | ||
"math/big" | ||
) | ||
|
||
// Generates approptiate public key format from given coordinates | ||
func newPublicKey(x, y *big.Int) *ecdsa.PublicKey { | ||
// Check if the given coordinates are valid | ||
if x == nil || y == nil || !elliptic.P256().IsOnCurve(x, y) { | ||
return nil | ||
} | ||
|
||
// Check if the given coordinates are the reference point (infinity) | ||
if x.Sign() == 0 && y.Sign() == 0 { | ||
return nil | ||
} | ||
|
||
return &ecdsa.PublicKey{ | ||
Curve: elliptic.P256(), | ||
X: x, | ||
Y: y, | ||
} | ||
} |
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,21 @@ | ||
package secp256r1 | ||
|
||
import ( | ||
"crypto/ecdsa" | ||
"math/big" | ||
) | ||
|
||
// Verifies the given signature (r, s) for the given hash and public key (x, y). | ||
func Verify(hash []byte, r, s, x, y *big.Int) bool { | ||
// Create the public key format | ||
publicKey := newPublicKey(x, y) | ||
|
||
// Check if they are invalid public key coordinates | ||
if publicKey == nil { | ||
return false | ||
} | ||
|
||
// Verify the signature with the public key, | ||
// then return true if it's valid, false otherwise | ||
return ecdsa.Verify(publicKey, hash, r, s) | ||
} |
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