-
Notifications
You must be signed in to change notification settings - Fork 589
/
sm2_test.go
171 lines (155 loc) · 4.9 KB
/
sm2_test.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/*
Copyright Suzhou Tongji Fintech Research Institute 2017 All Rights Reserved.
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 sm2
import (
"bytes"
"crypto/rand"
"fmt"
"io/ioutil"
"math/big"
"os"
"testing"
)
func TestSm2(t *testing.T) {
priv, err := GenerateKey(rand.Reader) // 生成密钥对
fmt.Println(priv)
if err != nil {
t.Fatal(err)
}
fmt.Printf("%v\n", priv.Curve.IsOnCurve(priv.X, priv.Y)) // 验证是否为sm2的曲线
pub := &priv.PublicKey
msg := []byte("123456")
d0, err := pub.EncryptAsn1(msg, rand.Reader)
if err != nil {
fmt.Printf("Error: failed to encrypt %s: %v\n", msg, err)
return
}
// fmt.Printf("Cipher text = %v\n", d0)
d1, err := priv.DecryptAsn1(d0)
if err != nil {
fmt.Printf("Error: failed to decrypt: %v\n", err)
}
fmt.Printf("clear text = %s\n", d1)
d2, err := Encrypt(pub, msg, rand.Reader, C1C2C3)
if err != nil {
fmt.Printf("Error: failed to encrypt %s: %v\n", msg, err)
return
}
// fmt.Printf("Cipher text = %v\n", d0)
d3, err := Decrypt(priv, d2, C1C2C3)
if err != nil {
fmt.Printf("Error: failed to decrypt: %v\n", err)
}
fmt.Printf("clear text = %s\n", d3)
msg, _ = ioutil.ReadFile("ifile") // 从文件读取数据
sign, err := priv.Sign(rand.Reader, msg, nil) // 签名
if err != nil {
t.Fatal(err)
}
err = ioutil.WriteFile("TestResult", sign, os.FileMode(0644))
if err != nil {
t.Fatal(err)
}
signdata, _ := ioutil.ReadFile("TestResult")
ok := priv.PublicKey.Verify(msg, signdata) // 密钥验证
if ok != true {
fmt.Printf("Verify error\n")
} else {
fmt.Printf("Verify ok\n")
}
pubKey := priv.PublicKey
ok = pubKey.Verify(msg, signdata) // 公钥验证
if ok != true {
fmt.Printf("Verify error\n")
} else {
fmt.Printf("Verify ok\n")
}
}
func BenchmarkSM2(t *testing.B) {
t.ReportAllocs()
msg := []byte("test")
priv, err := GenerateKey(nil) // 生成密钥对
if err != nil {
t.Fatal(err)
}
t.ResetTimer()
for i := 0; i < t.N; i++ {
sign, err := priv.Sign(nil, msg, nil) // 签名
if err != nil {
t.Fatal(err)
}
priv.PublicKey.Verify(msg, sign) // 密钥验证
}
}
func TestKEB2(t *testing.T) {
ida := []byte{'1', '2', '3', '4', '5', '6', '7', '8',
'1', '2', '3', '4', '5', '6', '7', '8'}
idb := []byte{'1', '2', '3', '4', '5', '6', '7', '8',
'1', '2', '3', '4', '5', '6', '7', '8'}
daBuf := []byte{0x81, 0xEB, 0x26, 0xE9, 0x41, 0xBB, 0x5A, 0xF1,
0x6D, 0xF1, 0x16, 0x49, 0x5F, 0x90, 0x69, 0x52,
0x72, 0xAE, 0x2C, 0xD6, 0x3D, 0x6C, 0x4A, 0xE1,
0x67, 0x84, 0x18, 0xBE, 0x48, 0x23, 0x00, 0x29}
dbBuf := []byte{0x78, 0x51, 0x29, 0x91, 0x7D, 0x45, 0xA9, 0xEA,
0x54, 0x37, 0xA5, 0x93, 0x56, 0xB8, 0x23, 0x38,
0xEA, 0xAD, 0xDA, 0x6C, 0xEB, 0x19, 0x90, 0x88,
0xF1, 0x4A, 0xE1, 0x0D, 0xEF, 0xA2, 0x29, 0xB5}
raBuf := []byte{0xD4, 0xDE, 0x15, 0x47, 0x4D, 0xB7, 0x4D, 0x06,
0x49, 0x1C, 0x44, 0x0D, 0x30, 0x5E, 0x01, 0x24,
0x00, 0x99, 0x0F, 0x3E, 0x39, 0x0C, 0x7E, 0x87,
0x15, 0x3C, 0x12, 0xDB, 0x2E, 0xA6, 0x0B, 0xB3}
rbBuf := []byte{0x7E, 0x07, 0x12, 0x48, 0x14, 0xB3, 0x09, 0x48,
0x91, 0x25, 0xEA, 0xED, 0x10, 0x11, 0x13, 0x16,
0x4E, 0xBF, 0x0F, 0x34, 0x58, 0xC5, 0xBD, 0x88,
0x33, 0x5C, 0x1F, 0x9D, 0x59, 0x62, 0x43, 0xD6}
expk := []byte{0x6C, 0x89, 0x34, 0x73, 0x54, 0xDE, 0x24, 0x84,
0xC6, 0x0B, 0x4A, 0xB1, 0xFD, 0xE4, 0xC6, 0xE5}
curve := P256Sm2()
curve.ScalarBaseMult(daBuf)
da := new(PrivateKey)
da.PublicKey.Curve = curve
da.D = new(big.Int).SetBytes(daBuf)
da.PublicKey.X, da.PublicKey.Y = curve.ScalarBaseMult(daBuf)
db := new(PrivateKey)
db.PublicKey.Curve = curve
db.D = new(big.Int).SetBytes(dbBuf)
db.PublicKey.X, db.PublicKey.Y = curve.ScalarBaseMult(dbBuf)
ra := new(PrivateKey)
ra.PublicKey.Curve = curve
ra.D = new(big.Int).SetBytes(raBuf)
ra.PublicKey.X, ra.PublicKey.Y = curve.ScalarBaseMult(raBuf)
rb := new(PrivateKey)
rb.PublicKey.Curve = curve
rb.D = new(big.Int).SetBytes(rbBuf)
rb.PublicKey.X, rb.PublicKey.Y = curve.ScalarBaseMult(rbBuf)
k1, Sb, S2, err := KeyExchangeB(16, ida, idb, db, &da.PublicKey, rb, &ra.PublicKey)
if err != nil {
t.Error(err)
}
k2, S1, Sa, err := KeyExchangeA(16, ida, idb, da, &db.PublicKey, ra, &rb.PublicKey)
if err != nil {
t.Error(err)
}
if bytes.Compare(k1, k2) != 0 {
t.Error("key exchange differ")
}
if bytes.Compare(k1, expk) != 0 {
t.Errorf("expected %x, found %x", expk, k1)
}
if bytes.Compare(S1, Sb) != 0 {
t.Error("hash verfication failed")
}
if bytes.Compare(Sa, S2) != 0 {
t.Error("hash verfication failed")
}
}