aboutsummaryrefslogtreecommitdiffstats
path: root/internal
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-12-16 18:19:03 +0800
committerFelix Lange <fjl@twurst.com>2016-12-16 18:32:51 +0800
commit3e4a04f34d9173b784747d54c9e0896ae5c5c9c3 (patch)
treedd792fc1b47ad2cd1c323a1e42d94d06e695f7b8 /internal
parent38827dd9ca87c1a8ffab32027400abb6e88f073b (diff)
downloaddexon-3e4a04f34d9173b784747d54c9e0896ae5c5c9c3.tar
dexon-3e4a04f34d9173b784747d54c9e0896ae5c5c9c3.tar.gz
dexon-3e4a04f34d9173b784747d54c9e0896ae5c5c9c3.tar.bz2
dexon-3e4a04f34d9173b784747d54c9e0896ae5c5c9c3.tar.lz
dexon-3e4a04f34d9173b784747d54c9e0896ae5c5c9c3.tar.xz
dexon-3e4a04f34d9173b784747d54c9e0896ae5c5c9c3.tar.zst
dexon-3e4a04f34d9173b784747d54c9e0896ae5c5c9c3.zip
internal/ethapi: fix hex handling for eth_sign, personal_{sign,recover}
Diffstat (limited to 'internal')
-rw-r--r--internal/ethapi/api.go43
1 files changed, 14 insertions, 29 deletions
diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go
index fd86b6465..607df6b0c 100644
--- a/internal/ethapi/api.go
+++ b/internal/ethapi/api.go
@@ -28,6 +28,7 @@ import (
"github.com/ethereum/ethash"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/common"
+ "github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/vm"
@@ -289,14 +290,14 @@ func (s *PrivateAccountAPI) SendTransaction(ctx context.Context, args SendTxArgs
}
// signHash is a helper function that calculates a hash for the given message that can be
-// safely used to calculate a signature from. The hash is calulcated with:
-// keccak256("\x19Ethereum Signed Message:\n"${message length}${message}).
-func signHash(message string) []byte {
- data := common.FromHex(message)
- // Give context to the signed message. This prevents an adversery to sign a tx.
- // It has no cryptographic purpose.
+// safely used to calculate a signature from.
+//
+// The hash is calulcated as
+// keccak256("\x19Ethereum Signed Message:\n"${message length}${message}).
+//
+// This gives context to the signed message and prevents signing of transactions.
+func signHash(data []byte) []byte {
msg := fmt.Sprintf("\x19Ethereum Signed Message:\n%d%s", len(data), data)
- // Always hash, this prevents choosen plaintext attacks that can extract key information
return crypto.Keccak256([]byte(msg))
}
@@ -306,13 +307,8 @@ func signHash(message string) []byte {
// The key used to calculate the signature is decrypted with the given password.
//
// https://github.com/ethereum/go-ethereum/wiki/Management-APIs#personal_sign
-func (s *PrivateAccountAPI) Sign(ctx context.Context, message string, addr common.Address, passwd string) (string, error) {
- hash := signHash(message)
- signature, err := s.b.AccountManager().SignWithPassphrase(addr, passwd, hash)
- if err != nil {
- return "0x", err
- }
- return common.ToHex(signature), nil
+func (s *PrivateAccountAPI) Sign(ctx context.Context, data hexutil.Bytes, addr common.Address, passwd string) (hexutil.Bytes, error) {
+ return s.b.AccountManager().SignWithPassphrase(addr, passwd, signHash(data))
}
// EcRecover returns the address for the account that was used to create the signature.
@@ -322,29 +318,20 @@ func (s *PrivateAccountAPI) Sign(ctx context.Context, message string, addr commo
// addr = ecrecover(hash, signature)
//
// https://github.com/ethereum/go-ethereum/wiki/Management-APIs#personal_ecRecover
-func (s *PrivateAccountAPI) EcRecover(ctx context.Context, message string, signature string) (common.Address, error) {
- var (
- hash = signHash(message)
- sig = common.FromHex(signature)
- )
-
+func (s *PrivateAccountAPI) EcRecover(ctx context.Context, data, sig hexutil.Bytes) (common.Address, error) {
if len(sig) != 65 {
return common.Address{}, fmt.Errorf("signature must be 65 bytes long")
}
-
// see crypto.Ecrecover description
if sig[64] == 27 || sig[64] == 28 {
sig[64] -= 27
}
-
- rpk, err := crypto.Ecrecover(hash, sig)
+ rpk, err := crypto.Ecrecover(signHash(data), sig)
if err != nil {
return common.Address{}, err
}
-
pubKey := crypto.ToECDSAPub(rpk)
recoveredAddr := crypto.PubkeyToAddress(*pubKey)
-
return recoveredAddr, nil
}
@@ -1116,10 +1103,8 @@ func (s *PublicTransactionPoolAPI) SendRawTransaction(ctx context.Context, encod
// The account associated with addr must be unlocked.
//
// https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sign
-func (s *PublicTransactionPoolAPI) Sign(addr common.Address, message string) (string, error) {
- hash := signHash(message)
- signature, err := s.b.AccountManager().SignEthereum(addr, hash)
- return common.ToHex(signature), err
+func (s *PublicTransactionPoolAPI) Sign(addr common.Address, data hexutil.Bytes) (hexutil.Bytes, error) {
+ return s.b.AccountManager().SignEthereum(addr, signHash(data))
}
// SignTransactionArgs represents the arguments to sign a transaction.