forked from storyicon/sigverify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eip712.go
70 lines (63 loc) · 2.53 KB
/
eip712.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
// Copyright 2022 [email protected]
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package sigverify
import (
"fmt"
ethcommon "github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/signer/core/apitypes"
)
// HashTypedData is used to calculate the hash of EIP-712 conformant typed data
// hash = keccak256("\x19${byteVersion}${domainSeparator}${hashStruct(message)}")
func HashTypedData(data apitypes.TypedData) ([]byte, []byte, error) {
domainSeparator, err := data.HashStruct("EIP712Domain", data.Domain.Map())
if err != nil {
return nil, nil, err
}
dataHash, err := data.HashStruct(data.PrimaryType, data.Message)
if err != nil {
return nil, nil, err
}
prefixedData := []byte(fmt.Sprintf("\x19\x01%s%s", string(domainSeparator), string(dataHash)))
prefixedDataHash := crypto.Keccak256(prefixedData)
return dataHash, prefixedDataHash, nil
}
// RecoveryTypedDataAddressEx is used to recover the signer address of the TypedData signature
func RecoveryTypedDataAddressEx(data apitypes.TypedData, signature []byte) (ethcommon.Address, error) {
_, dataHash, err := HashTypedData(data)
if err != nil {
return ethcommon.Address{}, err
}
return RecoveryAddressEx(dataHash, signature)
}
// VerifyTypedDataSignatureEx is used to verify the signer address of the TypedData signature
func VerifyTypedDataSignatureEx(address ethcommon.Address, data apitypes.TypedData, signature []byte) (bool, error) {
recoveredAddress, err := RecoveryTypedDataAddressEx(data, signature)
if err != nil {
return false, err
}
return recoveredAddress == address, nil
}
// VerifyTypedDataHexSignatureEx is used to verify the signer address of the TypedData signature
func VerifyTypedDataHexSignatureEx(address ethcommon.Address, data apitypes.TypedData, signature string) (bool, error) {
sig, err := HexDecode(signature)
if err != nil {
return false, err
}
recoveredAddress, err := RecoveryTypedDataAddressEx(data, sig)
if err != nil {
return false, err
}
return recoveredAddress == address, nil
}