aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-29 21:03:30 +0800
committerobscuren <geffobscura@gmail.com>2015-03-29 21:03:30 +0800
commitb7a0bc70313597ada37cc1a348bbd0d39696ec6e (patch)
treed9bbd2d19cea7a1bcfbe53d2a02252976709c58f /core
parent3b20603eb1373cab402babd1d3878a96fe7de5a7 (diff)
parent61c5edcb57a200764bfa37e3a7da909727a7852b (diff)
downloaddexon-b7a0bc70313597ada37cc1a348bbd0d39696ec6e.tar
dexon-b7a0bc70313597ada37cc1a348bbd0d39696ec6e.tar.gz
dexon-b7a0bc70313597ada37cc1a348bbd0d39696ec6e.tar.bz2
dexon-b7a0bc70313597ada37cc1a348bbd0d39696ec6e.tar.lz
dexon-b7a0bc70313597ada37cc1a348bbd0d39696ec6e.tar.xz
dexon-b7a0bc70313597ada37cc1a348bbd0d39696ec6e.tar.zst
dexon-b7a0bc70313597ada37cc1a348bbd0d39696ec6e.zip
Merge branch 'ebuchman-fix_ecrecover' into develop
Diffstat (limited to 'core')
-rw-r--r--core/vm/address.go31
1 files changed, 24 insertions, 7 deletions
diff --git a/core/vm/address.go b/core/vm/address.go
index 215f4bc8f..0b3a95dd0 100644
--- a/core/vm/address.go
+++ b/core/vm/address.go
@@ -3,8 +3,8 @@ package vm
import (
"math/big"
- "github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/common"
+ "github.com/ethereum/go-ethereum/crypto"
)
type Address interface {
@@ -61,15 +61,32 @@ func ripemd160Func(in []byte) []byte {
return common.LeftPadBytes(crypto.Ripemd160(in), 32)
}
+const ecRecoverInputLength = 128
+
func ecrecoverFunc(in []byte) []byte {
- // In case of an invalid sig. Defaults to return nil
- defer func() { recover() }()
+ // "in" is (hash, v, r, s), each 32 bytes
+ // but for ecrecover we want (r, s, v)
+ if len(in) < ecRecoverInputLength {
+ return nil
+ }
- hash := in[:32]
- v := common.BigD(in[32:64]).Bytes()[0] - 27
- sig := append(in[64:], v)
+ // Treat V as a 256bit integer
+ v := new(big.Int).Sub(common.Bytes2Big(in[32:64]), big.NewInt(27))
+ // Ethereum requires V to be either 0 or 1 => (27 || 28)
+ if !(v.Cmp(Zero) == 0 || v.Cmp(One) == 0) {
+ return nil
+ }
+
+ // v needs to be moved to the end
+ rsv := append(in[64:128], byte(v.Uint64()))
+ pubKey := crypto.Ecrecover(in[:32], rsv)
+ // make sure the public key is a valid one
+ if pubKey == nil || len(pubKey) != 65 {
+ return nil
+ }
- return common.LeftPadBytes(crypto.Sha3(crypto.Ecrecover(append(hash, sig...))[1:])[12:], 32)
+ // the first byte of pubkey is bitcoin heritage
+ return common.LeftPadBytes(crypto.Sha3(pubKey[1:])[12:], 32)
}
func memCpy(in []byte) []byte {