2019-08-27 13:29:42 +00:00
|
|
|
package keys
|
2018-03-21 16:11:04 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2019-02-20 13:34:28 +00:00
|
|
|
"crypto/ecdsa"
|
2019-08-27 13:29:42 +00:00
|
|
|
"crypto/elliptic"
|
2019-02-20 13:34:28 +00:00
|
|
|
"crypto/x509"
|
2018-03-25 10:45:54 +00:00
|
|
|
"encoding/hex"
|
2019-09-04 21:12:39 +00:00
|
|
|
"fmt"
|
2018-03-21 16:11:04 +00:00
|
|
|
"math/big"
|
2019-01-28 12:03:02 +00:00
|
|
|
|
2019-09-09 08:23:27 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/crypto/hash"
|
2019-12-25 13:03:39 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/encoding/address"
|
2019-09-16 09:18:13 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/io"
|
2019-12-03 14:25:25 +00:00
|
|
|
"github.com/CityOfZion/neo-go/pkg/vm/opcode"
|
2019-01-28 12:03:02 +00:00
|
|
|
"github.com/pkg/errors"
|
2018-03-21 16:11:04 +00:00
|
|
|
)
|
|
|
|
|
2018-03-25 10:45:54 +00:00
|
|
|
// PublicKeys is a list of public keys.
|
|
|
|
type PublicKeys []*PublicKey
|
|
|
|
|
|
|
|
func (keys PublicKeys) Len() int { return len(keys) }
|
|
|
|
func (keys PublicKeys) Swap(i, j int) { keys[i], keys[j] = keys[j], keys[i] }
|
|
|
|
func (keys PublicKeys) Less(i, j int) bool {
|
|
|
|
if keys[i].X.Cmp(keys[j].X) == -1 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if keys[i].X.Cmp(keys[j].X) == 1 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if keys[i].X.Cmp(keys[j].X) == 0 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return keys[i].Y.Cmp(keys[j].Y) == -1
|
|
|
|
}
|
|
|
|
|
2019-11-11 15:25:28 +00:00
|
|
|
// DecodeBytes decodes a PublicKeys from the given slice of bytes.
|
|
|
|
func (keys PublicKeys) DecodeBytes(data []byte) error {
|
|
|
|
b := io.NewBinReaderFromBuf(data)
|
|
|
|
b.ReadArray(keys)
|
|
|
|
return b.Err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Contains checks whether passed param contained in PublicKeys.
|
|
|
|
func (keys PublicKeys) Contains(pKey *PublicKey) bool {
|
|
|
|
for _, key := range keys {
|
|
|
|
if key.Equal(pKey) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unique returns set of public keys.
|
|
|
|
func (keys PublicKeys) Unique() PublicKeys {
|
|
|
|
unique := PublicKeys{}
|
|
|
|
for _, publicKey := range keys {
|
|
|
|
if !unique.Contains(publicKey) {
|
|
|
|
unique = append(unique, publicKey)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return unique
|
|
|
|
}
|
|
|
|
|
2018-03-25 10:45:54 +00:00
|
|
|
// PublicKey represents a public key and provides a high level
|
2019-09-04 21:12:39 +00:00
|
|
|
// API around the X/Y point.
|
2018-03-21 16:11:04 +00:00
|
|
|
type PublicKey struct {
|
2019-09-04 21:12:39 +00:00
|
|
|
X *big.Int
|
|
|
|
Y *big.Int
|
2018-03-21 16:11:04 +00:00
|
|
|
}
|
|
|
|
|
2019-11-21 12:41:14 +00:00
|
|
|
// Equal returns true in case public keys are equal.
|
2019-11-11 15:25:28 +00:00
|
|
|
func (p *PublicKey) Equal(key *PublicKey) bool {
|
|
|
|
return p.X.Cmp(key.X) == 0 && p.Y.Cmp(key.Y) == 0
|
|
|
|
}
|
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// NewPublicKeyFromString returns a public key created from the
|
2018-03-25 10:45:54 +00:00
|
|
|
// given hex string.
|
|
|
|
func NewPublicKeyFromString(s string) (*PublicKey, error) {
|
|
|
|
b, err := hex.DecodeString(s)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-02-19 18:37:35 +00:00
|
|
|
pubKey := new(PublicKey)
|
2019-09-16 16:31:49 +00:00
|
|
|
r := io.NewBinReaderFromBuf(b)
|
|
|
|
pubKey.DecodeBinary(r)
|
|
|
|
if r.Err != nil {
|
|
|
|
return nil, r.Err
|
2018-03-25 10:45:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return pubKey, nil
|
|
|
|
}
|
|
|
|
|
2018-03-21 16:11:04 +00:00
|
|
|
// Bytes returns the byte array representation of the public key.
|
|
|
|
func (p *PublicKey) Bytes() []byte {
|
2019-10-10 15:40:16 +00:00
|
|
|
if p.IsInfinity() {
|
2018-03-25 10:45:54 +00:00
|
|
|
return []byte{0x00}
|
|
|
|
}
|
|
|
|
|
2018-03-21 16:11:04 +00:00
|
|
|
var (
|
|
|
|
x = p.X.Bytes()
|
|
|
|
paddedX = append(bytes.Repeat([]byte{0x00}, 32-len(x)), x...)
|
|
|
|
prefix = byte(0x03)
|
|
|
|
)
|
|
|
|
|
|
|
|
if p.Y.Bit(0) == 0 {
|
|
|
|
prefix = byte(0x02)
|
|
|
|
}
|
|
|
|
|
|
|
|
return append([]byte{prefix}, paddedX...)
|
|
|
|
}
|
|
|
|
|
2019-10-10 13:45:30 +00:00
|
|
|
// NewPublicKeyFromASN1 returns a NEO PublicKey from the ASN.1 serialized key.
|
|
|
|
func NewPublicKeyFromASN1(data []byte) (*PublicKey, error) {
|
2019-02-20 13:34:28 +00:00
|
|
|
var (
|
|
|
|
err error
|
|
|
|
pubkey interface{}
|
|
|
|
)
|
|
|
|
if pubkey, err = x509.ParsePKIXPublicKey(data); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
pk, ok := pubkey.(*ecdsa.PublicKey)
|
|
|
|
if !ok {
|
|
|
|
return nil, errors.New("given bytes aren't ECDSA public key")
|
|
|
|
}
|
|
|
|
key := PublicKey{
|
2019-09-04 21:12:39 +00:00
|
|
|
X: pk.X,
|
|
|
|
Y: pk.Y,
|
2019-02-20 13:34:28 +00:00
|
|
|
}
|
|
|
|
return &key, nil
|
|
|
|
}
|
|
|
|
|
2019-10-22 14:56:03 +00:00
|
|
|
// decodeCompressedY performs decompression of Y coordinate for given X and Y's least significant bit.
|
2019-09-04 21:12:39 +00:00
|
|
|
func decodeCompressedY(x *big.Int, ylsb uint) (*big.Int, error) {
|
|
|
|
c := elliptic.P256()
|
|
|
|
cp := c.Params()
|
|
|
|
three := big.NewInt(3)
|
|
|
|
/* y**2 = x**3 + a*x + b % p */
|
|
|
|
xCubed := new(big.Int).Exp(x, three, cp.P)
|
|
|
|
threeX := new(big.Int).Mul(x, three)
|
|
|
|
threeX.Mod(threeX, cp.P)
|
|
|
|
ySquared := new(big.Int).Sub(xCubed, threeX)
|
|
|
|
ySquared.Add(ySquared, cp.B)
|
|
|
|
ySquared.Mod(ySquared, cp.P)
|
|
|
|
y := new(big.Int).ModSqrt(ySquared, cp.P)
|
|
|
|
if y == nil {
|
|
|
|
return nil, errors.New("error computing Y for compressed point")
|
|
|
|
}
|
|
|
|
if y.Bit(0) != ylsb {
|
|
|
|
y.Neg(y)
|
|
|
|
y.Mod(y, cp.P)
|
|
|
|
}
|
|
|
|
return y, nil
|
|
|
|
}
|
|
|
|
|
2019-01-28 12:03:02 +00:00
|
|
|
// DecodeBytes decodes a PublicKey from the given slice of bytes.
|
|
|
|
func (p *PublicKey) DecodeBytes(data []byte) error {
|
2019-09-16 09:18:13 +00:00
|
|
|
b := io.NewBinReaderFromBuf(data)
|
2019-09-16 16:31:49 +00:00
|
|
|
p.DecodeBinary(b)
|
|
|
|
return b.Err
|
2019-01-28 12:03:02 +00:00
|
|
|
}
|
|
|
|
|
2019-09-16 09:18:13 +00:00
|
|
|
// DecodeBinary decodes a PublicKey from the given BinReader.
|
2019-09-16 16:31:49 +00:00
|
|
|
func (p *PublicKey) DecodeBinary(r *io.BinReader) {
|
2019-09-05 08:58:34 +00:00
|
|
|
var prefix uint8
|
|
|
|
var x, y *big.Int
|
|
|
|
var err error
|
2019-01-28 12:03:02 +00:00
|
|
|
|
2019-12-12 17:17:50 +00:00
|
|
|
prefix = uint8(r.ReadB())
|
2019-09-16 09:18:13 +00:00
|
|
|
if r.Err != nil {
|
2019-09-16 16:31:49 +00:00
|
|
|
return
|
2018-03-21 16:11:04 +00:00
|
|
|
}
|
|
|
|
|
2019-12-25 15:00:25 +00:00
|
|
|
p256 := elliptic.P256()
|
|
|
|
p256Params := p256.Params()
|
2018-03-25 10:45:54 +00:00
|
|
|
// Infinity
|
2019-01-28 12:03:02 +00:00
|
|
|
switch prefix {
|
|
|
|
case 0x00:
|
2019-09-05 08:58:34 +00:00
|
|
|
// noop, initialized to nil
|
2019-09-16 16:31:49 +00:00
|
|
|
return
|
2019-01-28 12:03:02 +00:00
|
|
|
case 0x02, 0x03:
|
2019-09-05 08:58:34 +00:00
|
|
|
// Compressed public keys
|
|
|
|
xbytes := make([]byte, 32)
|
2019-12-06 15:37:46 +00:00
|
|
|
r.ReadBytes(xbytes)
|
2019-09-16 09:18:13 +00:00
|
|
|
if r.Err != nil {
|
2019-09-16 16:31:49 +00:00
|
|
|
return
|
2019-09-05 08:58:34 +00:00
|
|
|
}
|
|
|
|
x = new(big.Int).SetBytes(xbytes)
|
2019-09-09 08:23:27 +00:00
|
|
|
ylsb := uint(prefix & 0x1)
|
2019-09-05 08:58:34 +00:00
|
|
|
y, err = decodeCompressedY(x, ylsb)
|
|
|
|
if err != nil {
|
2019-12-25 14:44:30 +00:00
|
|
|
r.Err = err
|
2019-09-16 16:31:49 +00:00
|
|
|
return
|
2019-09-05 08:58:34 +00:00
|
|
|
}
|
2019-01-28 12:03:02 +00:00
|
|
|
case 0x04:
|
2019-09-05 08:58:34 +00:00
|
|
|
xbytes := make([]byte, 32)
|
|
|
|
ybytes := make([]byte, 32)
|
2019-12-06 15:37:46 +00:00
|
|
|
r.ReadBytes(xbytes)
|
|
|
|
r.ReadBytes(ybytes)
|
2019-09-16 09:18:13 +00:00
|
|
|
if r.Err != nil {
|
2019-09-16 16:31:49 +00:00
|
|
|
return
|
2019-09-05 08:58:34 +00:00
|
|
|
}
|
|
|
|
x = new(big.Int).SetBytes(xbytes)
|
|
|
|
y = new(big.Int).SetBytes(ybytes)
|
2019-12-25 15:00:25 +00:00
|
|
|
if !p256.IsOnCurve(x, y) {
|
|
|
|
r.Err = errors.New("encoded point is not on the P256 curve")
|
|
|
|
return
|
|
|
|
}
|
2019-01-28 12:03:02 +00:00
|
|
|
default:
|
2019-09-16 16:31:49 +00:00
|
|
|
r.Err = errors.Errorf("invalid prefix %d", prefix)
|
|
|
|
return
|
2018-03-25 10:45:54 +00:00
|
|
|
}
|
2019-12-25 15:00:25 +00:00
|
|
|
if x.Cmp(p256Params.P) >= 0 || y.Cmp(p256Params.P) >= 0 {
|
2019-09-16 16:31:49 +00:00
|
|
|
r.Err = errors.New("enccoded point is not correct (X or Y is bigger than P")
|
|
|
|
return
|
2019-09-05 09:31:03 +00:00
|
|
|
}
|
2019-09-05 08:58:34 +00:00
|
|
|
p.X, p.Y = x, y
|
2018-03-21 16:11:04 +00:00
|
|
|
}
|
|
|
|
|
2019-09-16 09:18:13 +00:00
|
|
|
// EncodeBinary encodes a PublicKey to the given BinWriter.
|
2019-09-16 16:31:49 +00:00
|
|
|
func (p *PublicKey) EncodeBinary(w *io.BinWriter) {
|
2019-11-22 10:34:06 +00:00
|
|
|
w.WriteBytes(p.Bytes())
|
2018-03-21 16:11:04 +00:00
|
|
|
}
|
2019-02-19 18:37:35 +00:00
|
|
|
|
2019-12-03 14:25:25 +00:00
|
|
|
// GetVerificationScript returns NEO VM bytecode with CHECKSIG command for the
|
|
|
|
// public key.
|
|
|
|
func (p *PublicKey) GetVerificationScript() []byte {
|
2019-02-19 18:37:35 +00:00
|
|
|
b := p.Bytes()
|
2019-12-03 14:25:25 +00:00
|
|
|
b = append([]byte{byte(opcode.PUSHBYTES33)}, b...)
|
|
|
|
b = append(b, byte(opcode.CHECKSIG))
|
|
|
|
|
|
|
|
return b
|
|
|
|
}
|
2019-02-19 18:37:35 +00:00
|
|
|
|
2019-12-03 14:25:25 +00:00
|
|
|
// Signature returns a NEO-specific hash of the key.
|
|
|
|
func (p *PublicKey) Signature() []byte {
|
|
|
|
sig := hash.Hash160(p.GetVerificationScript())
|
2019-02-19 18:37:35 +00:00
|
|
|
|
2019-11-27 09:20:31 +00:00
|
|
|
return sig.BytesBE()
|
2019-02-19 18:37:35 +00:00
|
|
|
}
|
|
|
|
|
2019-09-03 14:51:37 +00:00
|
|
|
// Address returns a base58-encoded NEO-specific address based on the key hash.
|
2019-08-27 14:16:33 +00:00
|
|
|
func (p *PublicKey) Address() string {
|
2019-12-25 13:03:39 +00:00
|
|
|
sig := hash.Hash160(p.GetVerificationScript())
|
2019-02-19 18:37:35 +00:00
|
|
|
|
2019-12-25 14:34:18 +00:00
|
|
|
return address.Uint160ToString(sig)
|
2019-02-19 18:37:35 +00:00
|
|
|
}
|
2019-08-27 13:29:42 +00:00
|
|
|
|
|
|
|
// Verify returns true if the signature is valid and corresponds
|
2019-10-22 14:56:03 +00:00
|
|
|
// to the hash and public key.
|
2019-08-27 13:29:42 +00:00
|
|
|
func (p *PublicKey) Verify(signature []byte, hash []byte) bool {
|
|
|
|
|
|
|
|
publicKey := &ecdsa.PublicKey{}
|
|
|
|
publicKey.Curve = elliptic.P256()
|
|
|
|
publicKey.X = p.X
|
|
|
|
publicKey.Y = p.Y
|
|
|
|
if p.X == nil || p.Y == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
rBytes := new(big.Int).SetBytes(signature[0:32])
|
|
|
|
sBytes := new(big.Int).SetBytes(signature[32:64])
|
|
|
|
return ecdsa.Verify(publicKey, hash, rBytes, sBytes)
|
|
|
|
}
|
2019-09-04 21:12:39 +00:00
|
|
|
|
2019-10-10 15:40:16 +00:00
|
|
|
// IsInfinity checks if the key is infinite (null, basically).
|
|
|
|
func (p *PublicKey) IsInfinity() bool {
|
2019-09-04 21:12:39 +00:00
|
|
|
return p.X == nil && p.Y == nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// String implements the Stringer interface.
|
|
|
|
func (p *PublicKey) String() string {
|
2019-10-10 15:40:16 +00:00
|
|
|
if p.IsInfinity() {
|
2019-09-04 21:12:39 +00:00
|
|
|
return "00"
|
|
|
|
}
|
|
|
|
bx := hex.EncodeToString(p.X.Bytes())
|
|
|
|
by := hex.EncodeToString(p.Y.Bytes())
|
|
|
|
return fmt.Sprintf("%s%s", bx, by)
|
|
|
|
}
|