forked from Hyperledger-TWGC/ccs-gm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
keys.go
266 lines (236 loc) · 7.12 KB
/
keys.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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
package utils
import (
"crypto/elliptic"
"crypto/rand"
"encoding/asn1"
"encoding/pem"
"errors"
"fmt"
"github.com/JieWaZi/ccs-gm/sm2"
"github.com/JieWaZi/ccs-gm/x509"
)
var (
oidNamedCurveSm2 = asn1.ObjectIdentifier{1, 2, 156, 10197, 1, 301}
oidPublicKeyECDSA = asn1.ObjectIdentifier{1, 2, 840, 10045, 2, 1}
)
type AlgorithmIdentifier struct {
Algorithm asn1.ObjectIdentifier
Parameters asn1.RawValue `asn1:"optional"`
}
// struct to hold info required for PKCS#8
type pkcs8Info struct {
Version int
AlgorithmIdentifier
PrivateKey []byte
}
type ecPrivateKey struct {
Version int
PrivateKey []byte
NamedCurveOID asn1.ObjectIdentifier `asn1:"optional,explicit,tag:0"`
PublicKey asn1.BitString `asn1:"optional,explicit,tag:1"`
}
// PrivateKeyToPEM converts the private key to PEM format.
// EC private keys are converted to PKCS#8 format.
// RSA private keys are converted to PKCS#1 format.
func PrivateKeyToPEM(privateKey *sm2.PrivateKey, pwd []byte) ([]byte, error) {
if len(pwd) != 0 {
return PrivateKeyToEncryptedPEM(privateKey, pwd)
}
if privateKey == nil {
return nil, errors.New("Invalid key. It must be different from nil.")
}
privateKeyBytes := privateKey.D.Bytes()
paddedPrivateKey := make([]byte, (privateKey.Curve.Params().N.BitLen()+7)/8)
copy(paddedPrivateKey[len(paddedPrivateKey)-len(privateKeyBytes):], privateKeyBytes)
// omit NamedCurveOID for compatibility as it's optional
asn1Bytes, err := asn1.Marshal(ecPrivateKey{
Version: 1,
PrivateKey: paddedPrivateKey,
NamedCurveOID: oidNamedCurveSm2,
PublicKey: asn1.BitString{Bytes: elliptic.Marshal(privateKey.Curve, privateKey.X, privateKey.Y)},
})
if err != nil {
return nil, fmt.Errorf("error marshaling SM2 key to asn1 [%s]", err)
}
var pkcs8Key pkcs8Info
pkcs8Key.Version = 0
var AlgorithmIdentifier AlgorithmIdentifier
AlgorithmIdentifier.Algorithm = oidPublicKeyECDSA
AlgorithmIdentifier.Parameters.Class = 0
AlgorithmIdentifier.Parameters.Tag = 6
AlgorithmIdentifier.Parameters.IsCompound = false
AlgorithmIdentifier.Parameters.FullBytes = []byte{6, 8, 42, 129, 28, 207, 85, 1, 130, 45}
pkcs8Key.AlgorithmIdentifier = AlgorithmIdentifier
pkcs8Key.PrivateKey = asn1Bytes
pkcs8Bytes, err := asn1.Marshal(pkcs8Key)
if err != nil {
return nil, fmt.Errorf("error marshaling EC key to asn1 [%s]", err)
}
return pem.EncodeToMemory(
&pem.Block{
Type: "PRIVATE KEY",
Bytes: pkcs8Bytes,
},
), nil
}
// PrivateKeyToEncryptedPEM converts a private key to an encrypted PEM
func PrivateKeyToEncryptedPEM(priKey *sm2.PrivateKey, pwd []byte) ([]byte, error) {
if priKey == nil {
return nil, errors.New("Invalid private key. It must be different from nil.")
}
oid := oidNamedCurveSm2
privateKeyBytes := priKey.D.Bytes()
paddedPrivateKey := make([]byte, (priKey.Curve.Params().N.BitLen()+7)/8)
copy(paddedPrivateKey[len(paddedPrivateKey)-len(privateKeyBytes):], privateKeyBytes)
asn1Bytes, err := asn1.Marshal(ecPrivateKey{
Version: 1,
PrivateKey: paddedPrivateKey,
NamedCurveOID: oid,
PublicKey: asn1.BitString{Bytes: elliptic.Marshal(priKey.Curve, priKey.X, priKey.Y)},
})
if err != nil {
return nil, err
}
var pkcs8Key pkcs8Info
pkcs8Key.Version = 0
var AlgorithmIdentifier AlgorithmIdentifier
AlgorithmIdentifier.Algorithm = oidPublicKeyECDSA
AlgorithmIdentifier.Parameters.Class = 0
AlgorithmIdentifier.Parameters.Tag = 6
AlgorithmIdentifier.Parameters.IsCompound = false
AlgorithmIdentifier.Parameters.FullBytes = []byte{6, 8, 42, 129, 28, 207, 85, 1, 130, 45}
pkcs8Key.AlgorithmIdentifier = AlgorithmIdentifier
pkcs8Key.PrivateKey = asn1Bytes
pkcs8Bytes, err := asn1.Marshal(pkcs8Key)
block, err := x509.EncryptPEMBlock(
rand.Reader,
"ENCRYPTED PRIVATE KEY",
pkcs8Bytes,
pwd,
x509.PEMCipherAES256)
if err != nil {
return nil, err
}
return pem.EncodeToMemory(block), nil
}
// PEMtoPrivateKey unmarshal a pem to private key
func PEMtoPrivateKey(raw []byte, pwd []byte) (*sm2.PrivateKey, error) {
if len(raw) == 0 {
return nil, errors.New("invalid PEM. It must be different from nil")
}
block, _ := pem.Decode(raw)
if block == nil {
return nil, fmt.Errorf("failed decoding PEM. Block must be different from nil. [% x]", raw)
}
if x509.IsEncryptedPEMBlock(block) || block.Type == "ENCRYPTED PRIVATE KEY"{
if len(pwd) == 0 {
return nil, errors.New("encrypted Key. Need a password")
}
decrypted, err := x509.DecryptPEMBlock(block, pwd)
if err != nil {
return nil, fmt.Errorf("failed PEM decryption [%s]", err)
}
key, err := x509.ParsePKCS8PrivateKey(decrypted)
if err != nil {
return nil, err
}
sm2Key, ok := key.(*sm2.PrivateKey)
if ok {
return sm2Key, nil
} else {
return nil, errors.New("key type error")
}
}
key, err := x509.ParsePKCS8PrivateKey(block.Bytes)
if err != nil {
return nil, err
}
sm2Key, ok := key.(*sm2.PrivateKey)
if ok {
return sm2Key, nil
} else {
return nil, errors.New("key type error")
}
}
// PublicKeyToPEM marshals a public key to the pem format
func PublicKeyToPEM(publicKey *sm2.PublicKey, pwd []byte) ([]byte, error) {
if len(pwd) != 0 {
return PublicKeyToEncryptedPEM(publicKey, pwd)
}
if publicKey == nil {
return nil, errors.New("invalid public key. It must be different from nil")
}
PubASN1, err := x509.MarshalPKIXPublicKey(publicKey)
if err != nil {
return nil, err
}
return pem.EncodeToMemory(
&pem.Block{
Type: "PUBLIC KEY",
Bytes: PubASN1,
},
), nil
}
// PublicKeyToEncryptedPEM converts a public key to encrypted pem
func PublicKeyToEncryptedPEM(publicKey *sm2.PublicKey, pwd []byte) ([]byte, error) {
if publicKey == nil {
return nil, errors.New("invalid public key. It must be different from nil")
}
if len(pwd) == 0 {
return nil, errors.New("invalid password. It must be different from nil")
}
raw, err := x509.MarshalPKIXPublicKey(publicKey)
if err != nil {
return nil, err
}
block, err := x509.EncryptPEMBlock(
rand.Reader,
"PUBLIC KEY",
raw,
pwd,
x509.PEMCipherAES256)
if err != nil {
return nil, err
}
return pem.EncodeToMemory(block), nil
}
// PEMtoPublicKey unmarshal a pem to public key
func PEMtoPublicKey(raw []byte, pwd []byte) (*sm2.PublicKey, error) {
if len(raw) == 0 {
return nil, errors.New("invalid PEM. It must be different from nil")
}
block, _ := pem.Decode(raw)
if block == nil {
return nil, fmt.Errorf("failed decoding. Block must be different from nil. [% x]", raw)
}
// TODO: derive from header the type of the key
if x509.IsEncryptedPEMBlock(block) {
if len(pwd) == 0 {
return nil, errors.New("encrypted Key. Password must be different from nil")
}
decrypted, err := x509.DecryptPEMBlock(block, pwd)
if err != nil {
return nil, fmt.Errorf("failed PEM decryption. [%s]", err)
}
key, err := x509.ParsePKIXPublicKey(decrypted)
if err != nil {
return nil, err
}
sm2Pk, ok := key.(*sm2.PublicKey)
if ok {
return sm2Pk, nil
} else {
return nil, errors.New("invalid public key format")
}
}
key, err := x509.ParsePKIXPublicKey(block.Bytes)
if err != nil {
return nil, err
}
sm2Pk, ok := key.(*sm2.PublicKey)
if ok {
return sm2Pk, nil
} else {
return nil, errors.New("invalid public key format")
}
}