-
Notifications
You must be signed in to change notification settings - Fork 24
/
kdf_pbkdf2.go
240 lines (200 loc) · 6.27 KB
/
kdf_pbkdf2.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
package pkcs8
import (
"hash"
"errors"
"crypto/md5"
"crypto/sha1"
"crypto/sha256"
"crypto/sha512"
"crypto/x509/pkix"
"encoding/asn1"
"golang.org/x/crypto/pbkdf2"
"github.com/tjfoc/gmsm/sm3"
)
// pkcs8 可使用的 hash 方式
type Hash uint
const (
MD5 Hash = 1 + iota
SHA1
SHA224
SHA256
SHA384
SHA512
SHA512_224
SHA512_256
SM3
)
var (
// 默认 hash
DefaultHash = SHA1
)
var (
// key derivation functions
oidPKCS5 = asn1.ObjectIdentifier{1, 2, 840, 113549, 1, 5}
oidPKCS5PBKDF2 = asn1.ObjectIdentifier{1, 2, 840, 113549, 1, 5, 12}
// hash 方式
oidDigestAlgorithm = asn1.ObjectIdentifier{1, 2, 840, 113549, 2}
oidHMACWithMD5 = asn1.ObjectIdentifier{1, 2, 840, 113549, 2, 6}
oidHMACWithSHA1 = asn1.ObjectIdentifier{1, 2, 840, 113549, 2, 7}
oidHMACWithSHA224 = asn1.ObjectIdentifier{1, 2, 840, 113549, 2, 8}
oidHMACWithSHA256 = asn1.ObjectIdentifier{1, 2, 840, 113549, 2, 9}
oidHMACWithSHA384 = asn1.ObjectIdentifier{1, 2, 840, 113549, 2, 10}
oidHMACWithSHA512 = asn1.ObjectIdentifier{1, 2, 840, 113549, 2, 11}
oidHMACWithSHA512_224 = asn1.ObjectIdentifier{1, 2, 840, 113549, 2, 12}
oidHMACWithSHA512_256 = asn1.ObjectIdentifier{1, 2, 840, 113549, 2, 13}
oidHMACWithSM3 = asn1.ObjectIdentifier{1, 2, 156, 10197, 1, 401, 2}
)
// 返回使用的 Hash 方式
func prfByOID(oid asn1.ObjectIdentifier) (func() hash.Hash, error) {
switch {
case oid.Equal(oidHMACWithMD5):
return md5.New, nil
case oid.Equal(oidHMACWithSHA1):
return sha1.New, nil
case oid.Equal(oidHMACWithSHA224):
return sha256.New224, nil
case oid.Equal(oidHMACWithSHA256):
return sha256.New, nil
case oid.Equal(oidHMACWithSHA384):
return sha512.New384, nil
case oid.Equal(oidHMACWithSHA512):
return sha512.New, nil
case oid.Equal(oidHMACWithSHA512_224):
return sha512.New512_224, nil
case oid.Equal(oidHMACWithSHA512_256):
return sha512.New512_256, nil
case oid.Equal(oidHMACWithSM3):
return sm3.New, nil
}
return nil, errors.New("pkcs8: unsupported hash function")
}
// 返回使用的 Hash 对应的 asn1
func oidByHash(h Hash) (asn1.ObjectIdentifier, error) {
switch h {
case MD5:
return oidHMACWithMD5, nil
case SHA1:
return oidHMACWithSHA1, nil
case SHA224:
return oidHMACWithSHA224, nil
case SHA256:
return oidHMACWithSHA256, nil
case SHA384:
return oidHMACWithSHA384, nil
case SHA512:
return oidHMACWithSHA512, nil
case SHA512_224:
return oidHMACWithSHA512_224, nil
case SHA512_256:
return oidHMACWithSHA512_256, nil
case SM3:
return oidHMACWithSM3, nil
}
return nil, errors.New("pkcs8: unsupported hash function")
}
// pbkdf2 数据,作为包装
type pbkdf2Params struct {
Salt []byte
IterationCount int
PrfParam pkix.AlgorithmIdentifier `asn1:"optional"`
}
func (this pbkdf2Params) DeriveKey(password []byte, size int) (key []byte, err error) {
var alg asn1.ObjectIdentifier
var h func() hash.Hash
if this.PrfParam.Algorithm.String() != "" {
h, err = prfByOID(this.PrfParam.Algorithm)
if err != nil {
return nil, err
}
} else {
alg, err = oidByHash(DefaultHash)
if err != nil {
return nil, err
}
h, err = prfByOID(alg)
if err != nil {
return nil, err
}
}
key = pbkdf2.Key(password, this.Salt, this.IterationCount, size, h)
return
}
// pbkdf2 数据,作为接收
type pbkdf2ParamsWithKeyLength struct {
Salt []byte
IterationCount int
KeyLength int `asn1:"optional"`
PrfParam pkix.AlgorithmIdentifier `asn1:"optional"`
}
func (this pbkdf2ParamsWithKeyLength) DeriveKey(password []byte, size int) (key []byte, err error) {
param := pbkdf2Params{this.Salt, this.IterationCount, this.PrfParam}
return param.DeriveKey(password, size)
}
// PBKDF2 配置
type PBKDF2Opts struct {
SaltSize int
IterationCount int
HMACHash Hash
}
func (this PBKDF2Opts) DeriveKey(password, salt []byte, size int) (key []byte, params KDFParameters, err error) {
var alg asn1.ObjectIdentifier
var prfParam pkix.AlgorithmIdentifier
if this.HMACHash != 0 {
alg, err = oidByHash(this.HMACHash)
if err != nil {
return nil, nil, err
}
prfParam = pkix.AlgorithmIdentifier{
Algorithm: alg,
Parameters: asn1.RawValue{
Tag: asn1.TagNull,
},
}
} else {
alg, err = oidByHash(DefaultHash)
if err != nil {
return nil, nil, err
}
prfParam = pkix.AlgorithmIdentifier{}
}
h, err := prfByOID(alg)
if err != nil {
return nil, nil, err
}
params = pbkdf2Params{salt, this.IterationCount, prfParam}
key = pbkdf2.Key(password, salt, this.IterationCount, size, h)
return key, params, nil
}
func (this PBKDF2Opts) GetSaltSize() int {
return this.SaltSize
}
func (this PBKDF2Opts) OID() asn1.ObjectIdentifier {
return oidPKCS5PBKDF2
}
// PBKDF2 配置,带KeyLength
type PBKDF2OptsWithKeyLength struct {
SaltSize int
IterationCount int
HMACHash Hash
}
func (this PBKDF2OptsWithKeyLength) DeriveKey(password, salt []byte, size int) ([]byte, KDFParameters, error) {
opts := PBKDF2Opts{this.SaltSize, this.IterationCount, this.HMACHash}
key, params, err := opts.DeriveKey(password, salt, size)
if err != nil {
return nil, nil, err
}
keyParams := params.(pbkdf2Params)
newParams := pbkdf2ParamsWithKeyLength{salt, this.IterationCount, size, keyParams.PrfParam}
return key, newParams, nil
}
func (this PBKDF2OptsWithKeyLength) GetSaltSize() int {
return this.SaltSize
}
func (this PBKDF2OptsWithKeyLength) OID() asn1.ObjectIdentifier {
return oidPKCS5PBKDF2
}
func init() {
AddKDF(oidPKCS5PBKDF2, func() KDFParameters {
return new(pbkdf2ParamsWithKeyLength)
})
}