mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
402 B
21 lines
402 B
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
|
|
}
|
|
|
|
return &ecdsa.PublicKey{
|
|
Curve: elliptic.P256(),
|
|
X: x,
|
|
Y: y,
|
|
}
|
|
}
|
|
|