-
Notifications
You must be signed in to change notification settings - Fork 4
/
credential_test.go
406 lines (363 loc) · 13.8 KB
/
credential_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
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
package passhash_test
import (
_ "crypto/sha256"
_ "crypto/sha512"
"testing"
)
import (
"github.com/dhui/passhash"
)
func testNew(t *testing.T, kdf passhash.Kdf) {
userID := passhash.UserID(0)
password := "tooshort" // for some odd reason, a short password needed to get full bcrypt coverage
config := passhash.Config{Kdf: kdf, WorkFactor: passhash.DefaultWorkFactor[kdf], SaltSize: 16,
KeyLength: 32, AuditLogger: &passhash.DummyAuditLogger{}, Store: passhash.DummyCredentialStore{}}
credential, err := config.NewCredential(userID, password)
if err != nil {
t.Errorf("Failed to get password credential for Kdf %v. Got error %v", kdf, err)
}
if matched, _ := credential.MatchesPassword(password); !matched {
t.Errorf("Password did not match Credential for Kdf: %v", kdf)
}
if matched, _ := credential.MatchesPassword(password + "extra"); matched {
t.Errorf("Password matched Credential for Kdf: %v", kdf)
}
}
func TestNewPbkdf2Sha256(t *testing.T) {
testNew(t, passhash.Pbkdf2Sha256)
}
func TestNewPbkdf2Sha512(t *testing.T) {
testNew(t, passhash.Pbkdf2Sha512)
}
func TestNewPbkdf2Sha3_256(t *testing.T) {
testNew(t, passhash.Pbkdf2Sha3_256)
}
func TestNewPbkdf2Sha3_512(t *testing.T) {
testNew(t, passhash.Pbkdf2Sha3_512)
}
func TestNewBcrypt(t *testing.T) {
testNew(t, passhash.Bcrypt)
}
func TestNewScrypt(t *testing.T) {
testNew(t, passhash.Scrypt)
}
func TestNewInvalidKdf(t *testing.T) {
userID := passhash.UserID(0)
config := passhash.Config{Kdf: passhash.Kdf(999999), WorkFactor: &passhash.Pbkdf2WorkFactor{}}
_, err := config.NewCredential(userID, testPassword)
if err == nil {
t.Error("Able to generate a Credential with invalid Kdf")
}
}
func TestMatchesPasswordError(t *testing.T) {
invalidCredential := passhash.Credential{}
if matched, _ := invalidCredential.MatchesPassword("password"); matched {
t.Error("Invalid Credential validates incorrect passwords")
}
}
func TestNeedsUpdate(t *testing.T) {
origKdf := passhash.Pbkdf2Sha256
origWorkFactor := passhash.DefaultWorkFactor[origKdf]
if origKdf == passhash.DefaultConfig.Kdf {
t.Errorf("Original credential is already the safe recommended Kdf. %v != %v", origKdf,
passhash.DefaultConfig.Kdf)
}
if origWorkFactor == passhash.DefaultWorkFactor[passhash.DefaultConfig.Kdf] {
t.Errorf("Original credential WorkFactor are already the safe recommended Kdf WorkFactor. %v != %v",
origWorkFactor, passhash.DefaultWorkFactor[passhash.DefaultConfig.Kdf])
}
config := passhash.Config{Kdf: origKdf, WorkFactor: origWorkFactor}
userID := passhash.UserID(0)
credential, err := config.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
if !credential.NeedsUpdate() {
t.Error("Outdated config should need an update")
}
}
func TestMeetsConfigSelf(t *testing.T) {
config := passhash.Config{Kdf: passhash.Scrypt, WorkFactor: &passhash.ScryptWorkFactor{R: 1, P: 2, N: 2}}
userID := passhash.UserID(0)
credential, err := config.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
if !credential.MeetsConfig(config) {
t.Error("Config doesn't meet with credential it created")
}
}
func TestMeetsConfigSame(t *testing.T) {
configA := passhash.Config{Kdf: passhash.Scrypt, WorkFactor: &passhash.ScryptWorkFactor{R: 1, P: 2, N: 2}}
configB := passhash.Config{Kdf: passhash.Scrypt, WorkFactor: &passhash.ScryptWorkFactor{R: 1, P: 2, N: 2}}
userID := passhash.UserID(0)
credential, err := configA.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
if !credential.MeetsConfig(configB) {
t.Error("Same configs do are not compared equal")
}
}
func TestMeetsConfigDifferentKdf(t *testing.T) {
configA := passhash.Config{Kdf: passhash.Scrypt, WorkFactor: &passhash.ScryptWorkFactor{R: 1, P: 2, N: 2}}
configB := passhash.Config{Kdf: passhash.Bcrypt, WorkFactor: &passhash.BcryptWorkFactor{Cost: 5}}
userID := passhash.UserID(0)
credential, err := configA.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
if credential.MeetsConfig(configB) {
t.Error("Configs with different Kdfs considered the same")
}
}
func TestMeetsConfigDifferentWorkFactor(t *testing.T) {
configA := passhash.Config{Kdf: passhash.Scrypt, WorkFactor: &passhash.ScryptWorkFactor{R: 1, P: 2, N: 2}}
configB := passhash.Config{Kdf: passhash.Scrypt, WorkFactor: &passhash.ScryptWorkFactor{R: 1, P: 2, N: 4}}
userID := passhash.UserID(0)
credential, err := configA.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
if credential.MeetsConfig(configB) {
t.Error("Configs with different Kdfs considered the same")
}
}
func TestMatchesPasswordWithIP(t *testing.T) {
userID := passhash.UserID(0)
credential, err := passhash.DefaultConfig.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
matched, updated := credential.MatchesPasswordWithIP(testPassword, passhash.EmptyIP)
if !matched {
t.Error("Password did not match")
}
if updated {
t.Error("Credential updated")
}
}
func TestMatchesPasswordMatchNoUpdate(t *testing.T) {
origKdf := passhash.Scrypt
origWorkFactor := passhash.DefaultWorkFactor[origKdf]
if origKdf != passhash.DefaultConfig.Kdf {
t.Errorf("Original credential is not the safe recommended Kdf. %v != %v", origKdf,
passhash.DefaultConfig.Kdf)
}
if origWorkFactor != passhash.DefaultWorkFactor[passhash.DefaultConfig.Kdf] {
t.Errorf("Original credential WorkFactor is not the safe recommended Kdf WorkFactor. %v != %v",
origWorkFactor, passhash.DefaultWorkFactor[passhash.DefaultConfig.Kdf])
}
config := passhash.Config{Kdf: origKdf, WorkFactor: origWorkFactor}
userID := passhash.UserID(0)
credential, err := config.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
if credential.Kdf != origKdf {
t.Errorf("Original credential Kdf changed. %v != %v", credential.Kdf, origKdf)
}
if credential.WorkFactor != origWorkFactor {
t.Errorf("Original credential WorkFactor changed. %v != %v", credential.WorkFactor, origWorkFactor)
}
matched, updated := credential.MatchesPassword(testPassword)
if !matched {
t.Error("Valid password did not match credential")
}
if updated {
t.Error("Up-to-date credentials updated")
}
if credential.Kdf != passhash.DefaultConfig.Kdf {
t.Errorf("Credential Kdf unexpectedly updated from safe recommended Kdf. %v != %v", credential.Kdf,
passhash.DefaultConfig.Kdf)
}
if credential.WorkFactor != passhash.DefaultWorkFactor[passhash.DefaultConfig.Kdf] {
t.Errorf("Credential WorkFactor unexpected updated from safe recommended Kdf WorkFactor. %v != %v",
credential.WorkFactor, passhash.DefaultWorkFactor[passhash.DefaultConfig.Kdf])
}
}
func TestMatchesPasswordUpdateKdfAndWorkFactor(t *testing.T) {
origKdf := passhash.Pbkdf2Sha256
origWorkFactor := passhash.DefaultWorkFactor[origKdf]
if origKdf == passhash.DefaultConfig.Kdf {
t.Errorf("Original credential is already the safe recommended Kdf. %v != %v", origKdf,
passhash.DefaultConfig.Kdf)
}
if origWorkFactor == passhash.DefaultWorkFactor[passhash.DefaultConfig.Kdf] {
t.Errorf("Original credential WorkFactor are already the safe recommended Kdf WorkFactor. %v != %v",
origWorkFactor, passhash.DefaultWorkFactor[passhash.DefaultConfig.Kdf])
}
config := passhash.Config{Kdf: origKdf, WorkFactor: origWorkFactor}
userID := passhash.UserID(0)
credential, err := config.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
if credential.Kdf != origKdf {
t.Errorf("Original credential Kdf changed. %v != %v", credential.Kdf, origKdf)
}
if credential.WorkFactor != origWorkFactor {
t.Errorf("Original credential WorkFactor changed. %v != %v", credential.WorkFactor, origWorkFactor)
}
matched, updated := credential.MatchesPassword(testPassword)
if !matched {
t.Error("Valid password did not match credential")
}
if !updated {
t.Error("Outdated credential not updated")
}
if credential.Kdf != passhash.DefaultConfig.Kdf {
t.Errorf("Updated credential Kdf did not update to safe recommended Kdf. %v != %v", credential.Kdf,
passhash.DefaultConfig.Kdf)
}
if credential.WorkFactor != passhash.DefaultWorkFactor[passhash.DefaultConfig.Kdf] {
t.Errorf("Updated credential WorkFactor did not update to safe recommended Kdf WorkFactor. %v != %v",
credential.WorkFactor, passhash.DefaultWorkFactor[passhash.DefaultConfig.Kdf])
}
}
func TestMatchesPasswordUpdateWorkFactor(t *testing.T) {
kdf := passhash.DefaultConfig.Kdf
origWorkFactor := passhash.ScryptWorkFactor{N: 256, R: 16, P: 1}
defaultScryptWorkFactor := *passhash.DefaultWorkFactor[kdf].(*passhash.ScryptWorkFactor)
if origWorkFactor == defaultScryptWorkFactor {
t.Errorf("Original credential is already the safe recommended Kdf WorkFactor. %v == %v",
origWorkFactor, defaultScryptWorkFactor)
}
config := passhash.Config{Kdf: kdf, WorkFactor: &origWorkFactor}
userID := passhash.UserID(0)
credential, err := config.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
if credential.Kdf != kdf {
t.Errorf("Original credential Kdf changed. %v != %v", credential.Kdf, kdf)
}
newWorkFactor := *credential.WorkFactor.(*passhash.ScryptWorkFactor)
if newWorkFactor != origWorkFactor {
t.Errorf("Original credential WorkFactor changed. %v != %v", newWorkFactor, origWorkFactor)
}
matched, updated := credential.MatchesPassword(testPassword)
if !matched {
t.Error("Valid password did not match credential")
}
if !updated {
t.Error("Outdated credential not updated")
}
if credential.Kdf != kdf {
t.Errorf("Updated credential Kdf changed. %v != %v", credential.Kdf, kdf)
}
if credential.WorkFactor != passhash.DefaultWorkFactor[passhash.DefaultConfig.Kdf] {
t.Errorf("Updated credential WorkFactor did not update to safe recommended Kdf WorkFactor. %v != %v",
credential.WorkFactor, passhash.DefaultWorkFactor[passhash.DefaultConfig.Kdf])
}
}
func TestChangePassword(t *testing.T) {
userID := passhash.UserID(0)
credential, err := passhash.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
if err := credential.ChangePassword(testPassword, "newInsecurePassword"); err != nil {
t.Error("Got error resetting password.", err)
}
}
func TestChangePasswordSamePassword(t *testing.T) {
userID := passhash.UserID(0)
credential, err := passhash.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
if err := credential.ChangePassword(testPassword, testPassword); err == nil {
t.Error("Changed password to the same password")
}
}
func TestChangePasswordNewPasswordDoesNotMeetPasswordPolicy(t *testing.T) {
userID := passhash.UserID(0)
credential, err := passhash.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
if err := credential.ChangePassword(testPassword, "tooshort"); err == nil {
t.Error("Should have gotten error resetting password")
}
}
func TestChangePasswordIncorrectOldPassword(t *testing.T) {
userID := passhash.UserID(0)
credential, err := passhash.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
if err := credential.ChangePassword("wrongPassword", "newInsecurePassword"); err == nil {
t.Error("Should have gotten error resetting password")
}
}
func TestChangePasswordWithIP(t *testing.T) {
userID := passhash.UserID(0)
credential, err := passhash.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
if err := credential.ChangePasswordWithIP(testPassword, "newInsecurePassword", passhash.EmptyIP); err != nil {
t.Error("Got error resetting password.", err)
}
}
func TestChangePasswordWithIPNewPasswordDoesNotMeetPasswordPolicy(t *testing.T) {
userID := passhash.UserID(0)
credential, err := passhash.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
if err := credential.ChangePasswordWithIP(testPassword, "tooshort", passhash.EmptyIP); err == nil {
t.Error("Should have gotten error resetting password")
}
}
func TestChangePasswordWithIPIncorrectOldPassword(t *testing.T) {
userID := passhash.UserID(0)
credential, err := passhash.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
if err := credential.ChangePasswordWithIP("wrongPassword", "newInsecurePassword", passhash.EmptyIP); err == nil {
t.Error("Should have gotten error resetting password")
}
}
func TestReset(t *testing.T) {
userID := passhash.UserID(0)
credential, err := passhash.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
if err := credential.Reset("newInsecurePassword"); err != nil {
t.Error("Got error resetting password.", err)
}
}
func TestResetNewPasswordDoesNotMeetPasswordPolicy(t *testing.T) {
userID := passhash.UserID(0)
credential, err := passhash.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
if err := credential.Reset("tooshort"); err == nil {
t.Error("Should have gotten error resetting password")
}
}
func TestResetWithIP(t *testing.T) {
userID := passhash.UserID(0)
credential, err := passhash.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
if err := credential.ResetWithIP("newInsecurePassword", passhash.EmptyIP); err != nil {
t.Error("Got error resetting password.", err)
}
}
func TestResetWithIPNewPasswordDoesNotMeetPasswordPolicy(t *testing.T) {
userID := passhash.UserID(0)
credential, err := passhash.NewCredential(userID, testPassword)
if err != nil {
t.Error("Unable to create new Credential")
}
if err := credential.ResetWithIP("tooshort", passhash.EmptyIP); err == nil {
t.Error("Should have gotten error resetting password")
}
}