forked from qtumproject/janus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eth_sign.go
75 lines (56 loc) · 1.97 KB
/
eth_sign.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package transformer
import (
"bytes"
"encoding/binary"
"encoding/hex"
"fmt"
"github.com/btcsuite/btcd/btcec"
"github.com/btcsuite/btcd/chaincfg/chainhash"
"github.com/labstack/echo"
"github.com/qtumproject/janus/pkg/eth"
"github.com/qtumproject/janus/pkg/qtum"
"github.com/qtumproject/janus/pkg/utils"
)
// ProxyETHGetLogs implements ETHProxy
type ProxyETHSign struct {
*qtum.Qtum
}
func (p *ProxyETHSign) Method() string {
return "eth_sign"
}
func (p *ProxyETHSign) Request(rawreq *eth.JSONRPCRequest, c echo.Context) (interface{}, eth.JSONRPCError) {
var req eth.SignRequest
if err := unmarshalRequest(rawreq.Params, &req); err != nil {
p.GetDebugLogger().Log("method", p.Method(), "error", err)
// TODO: Correct error code?
return nil, eth.NewInvalidParamsError(err.Error())
}
addr := utils.RemoveHexPrefix(req.Account)
acc := p.Qtum.Accounts.FindByHexAddress(addr)
if acc == nil {
p.GetDebugLogger().Log("method", p.Method(), "account", addr, "msg", "Unknown account")
return nil, eth.NewInvalidParamsError(fmt.Sprintf("No such account: %s", addr))
}
sig, err := signMessage(acc.PrivKey, req.Message)
if err != nil {
p.GetDebugLogger().Log("method", p.Method(), "msg", "Failed to sign message", "error", err)
return nil, eth.NewCallbackError(err.Error())
}
p.GetDebugLogger().Log("method", p.Method(), "msg", "Successfully signed message")
return eth.SignResponse("0x" + hex.EncodeToString(sig)), nil
}
func signMessage(key *btcec.PrivateKey, msg []byte) ([]byte, error) {
msghash := chainhash.DoubleHashB(paddedMessage(msg))
secp256k1 := btcec.S256()
return btcec.SignCompact(secp256k1, key, msghash, true)
}
var qtumSignMessagePrefix = []byte("\u0015Qtum Signed Message:\n")
func paddedMessage(msg []byte) []byte {
var wbuf bytes.Buffer
wbuf.Write(qtumSignMessagePrefix)
var msglenbuf [binary.MaxVarintLen64]byte
msglen := binary.PutUvarint(msglenbuf[:], uint64(len(msg)))
wbuf.Write(msglenbuf[:msglen])
wbuf.Write(msg)
return wbuf.Bytes()
}