-
Notifications
You must be signed in to change notification settings - Fork 25
/
create.go
245 lines (194 loc) · 5.8 KB
/
create.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
package rsa
import (
"errors"
"crypto/rand"
"crypto/x509"
"encoding/pem"
cryptobin_rsa "github.com/deatil/go-cryptobin/rsa"
cryptobin_pkcs1 "github.com/deatil/go-cryptobin/pkcs1"
cryptobin_pkcs8 "github.com/deatil/go-cryptobin/pkcs8"
)
type (
// 配置
Opts = cryptobin_pkcs8.Opts
// PBKDF2 配置
PBKDF2Opts = cryptobin_pkcs8.PBKDF2Opts
// Scrypt 配置
ScryptOpts = cryptobin_pkcs8.ScryptOpts
)
var (
// 获取 Cipher 类型
GetCipherFromName = cryptobin_pkcs8.GetCipherFromName
// 获取 hash 类型
GetHashFromName = cryptobin_pkcs8.GetHashFromName
)
// 生成私钥 pem 数据, PKCS1 别名
// 使用:
// obj := New().GenerateKey(2048)
// priKey := obj.CreatePrivateKey().ToKeyString()
func (this Rsa) CreatePrivateKey() Rsa {
return this.CreatePKCS1PrivateKey()
}
// 生成私钥带密码 pem 数据, PKCS1 别名
func (this Rsa) CreatePrivateKeyWithPassword(password string, opts ...string) Rsa {
return this.CreatePKCS1PrivateKeyWithPassword(password, opts...)
}
// 生成公钥 pem 数据
func (this Rsa) CreatePublicKey() Rsa {
return this.CreatePKCS1PublicKey()
}
// ====================
// 生成 PKCS1 私钥
func (this Rsa) CreatePKCS1PrivateKey() Rsa {
if this.privateKey == nil {
err := errors.New("Rsa: privateKey error.")
return this.AppendError(err)
}
x509PrivateKey := x509.MarshalPKCS1PrivateKey(this.privateKey)
privateBlock := &pem.Block{
Type: "RSA PRIVATE KEY",
Bytes: x509PrivateKey,
}
this.keyData = pem.EncodeToMemory(privateBlock)
return this
}
// 生成 PKCS1 私钥带密码 pem 数据
// CreatePKCS1PrivateKeyWithPassword("123", "AES256CBC")
// PEMCipher: DESCBC | DESEDE3CBC | AES128CBC | AES192CBC | AES256CBC
func (this Rsa) CreatePKCS1PrivateKeyWithPassword(password string, opts ...string) Rsa {
if this.privateKey == nil {
err := errors.New("Rsa: privateKey error.")
return this.AppendError(err)
}
opt := "AES256CBC"
if len(opts) > 0 {
opt = opts[0]
}
// 加密方式
cipher := cryptobin_pkcs1.GetPEMCipher(opt)
if cipher == nil {
err := errors.New("Rsa: PEMCipher not exists.")
return this.AppendError(err)
}
// 生成私钥
x509PrivateKey := x509.MarshalPKCS1PrivateKey(this.privateKey)
// 生成加密数据
privateBlock, err := cryptobin_pkcs1.EncryptPEMBlock(
rand.Reader,
"RSA PRIVATE KEY",
x509PrivateKey,
[]byte(password),
cipher,
)
if err != nil {
return this.AppendError(err)
}
this.keyData = pem.EncodeToMemory(privateBlock)
return this
}
// 生成 pcks1 公钥 pem 数据
func (this Rsa) CreatePKCS1PublicKey() Rsa {
if this.publicKey == nil {
err := errors.New("Rsa: publicKey error.")
return this.AppendError(err)
}
x509PublicKey := x509.MarshalPKCS1PublicKey(this.publicKey)
publicBlock := &pem.Block{
Type: "RSA PUBLIC KEY",
Bytes: x509PublicKey,
}
this.keyData = pem.EncodeToMemory(publicBlock)
return this
}
// ====================
// 生成 PKCS8 私钥 pem 数据
func (this Rsa) CreatePKCS8PrivateKey() Rsa {
if this.privateKey == nil {
err := errors.New("Rsa: privateKey error.")
return this.AppendError(err)
}
x509PrivateKey, err := x509.MarshalPKCS8PrivateKey(this.privateKey)
if err != nil {
return this.AppendError(err)
}
privateBlock := &pem.Block{
Type: "PRIVATE KEY",
Bytes: x509PrivateKey,
}
this.keyData = pem.EncodeToMemory(privateBlock)
return this
}
// 生成 PKCS8 私钥带密码 pem 数据
// CreatePKCS8PrivateKeyWithPassword("123", "AES256CBC", "SHA256")
func (this Rsa) CreatePKCS8PrivateKeyWithPassword(password string, opts ...any) Rsa {
if this.privateKey == nil {
err := errors.New("Rsa: privateKey error.")
return this.AppendError(err)
}
opt, err := cryptobin_pkcs8.ParseOpts(opts...)
if err != nil {
return this.AppendError(err)
}
// 生成私钥
x509PrivateKey, err := x509.MarshalPKCS8PrivateKey(this.privateKey)
if err != nil {
return this.AppendError(err)
}
// 生成加密数据
privateBlock, err := cryptobin_pkcs8.EncryptPEMBlock(
rand.Reader,
"ENCRYPTED PRIVATE KEY",
x509PrivateKey,
[]byte(password),
opt,
)
if err != nil {
return this.AppendError(err)
}
this.keyData = pem.EncodeToMemory(privateBlock)
return this
}
// 生成公钥 pem 数据
func (this Rsa) CreatePKCS8PublicKey() Rsa {
if this.publicKey == nil {
err := errors.New("Rsa: publicKey error.")
return this.AppendError(err)
}
x509PublicKey, err := x509.MarshalPKIXPublicKey(this.publicKey)
if err != nil {
return this.AppendError(err)
}
publicBlock := &pem.Block{
Type: "PUBLIC KEY",
Bytes: x509PublicKey,
}
this.keyData = pem.EncodeToMemory(publicBlock)
return this
}
// ====================
// 生成私钥 xml 数据
func (this Rsa) CreateXMLPrivateKey() Rsa {
if this.privateKey == nil {
err := errors.New("Rsa: privateKey error.")
return this.AppendError(err)
}
xmlPrivateKey, err := cryptobin_rsa.MarshalXMLPrivateKey(this.privateKey)
if err != nil {
return this.AppendError(err)
}
this.keyData = xmlPrivateKey
return this
}
// 生成公钥 xml 数据
func (this Rsa) CreateXMLPublicKey() Rsa {
if this.publicKey == nil {
err := errors.New("Rsa: publicKey error.")
return this.AppendError(err)
}
xmlPublicKey, err := cryptobin_rsa.MarshalXMLPublicKey(this.publicKey)
if err != nil {
return this.AppendError(err)
}
this.keyData = xmlPublicKey
return this
}