-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
errors.go
56 lines (49 loc) · 2.19 KB
/
errors.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
/*
* crunchy - find common flaws in passwords
* Copyright (c) 2017, Christian Muehlhaeuser <[email protected]>
*
* For license see LICENSE
*/
package crunchy
import (
"errors"
)
// DictionaryError wraps an ErrMangledDictionary with contextual information
type DictionaryError struct {
Err error
Word string
Distance int
}
// HashedDictionaryError wraps an ErrHashedDictionary with contextual information
type HashedDictionaryError struct {
Err error
Word string
}
func (e *DictionaryError) Error() string {
return e.Err.Error()
}
func (e *HashedDictionaryError) Error() string {
return e.Err.Error()
}
var (
// ErrEmpty gets returned when the password is empty or all whitespace
ErrEmpty = errors.New("Password is empty or all whitespace")
// ErrTooShort gets returned when the password is not long enough
ErrTooShort = errors.New("Password is too short")
// ErrTooFewChars gets returned when the password does not contain enough unique characters
ErrTooFewChars = errors.New("Password does not contain enough different/unique characters")
// ErrNoDigits gets returned when the password does not contain any digits
ErrNoDigits = errors.New("Password does not contain any digits")
// ErrNoSymbols gets returned when the password does not contain any symbols
ErrNoSymbols = errors.New("Password does not contain any special symbols")
// ErrTooSystematic gets returned when the password is too systematic (e.g. 123456, abcdef)
ErrTooSystematic = errors.New("Password is too systematic")
// ErrDictionary gets returned when the password is found in a dictionary
ErrDictionary = errors.New("Password is too common / from a dictionary")
// ErrMangledDictionary gets returned when the password is mangled, but found in a dictionary
ErrMangledDictionary = errors.New("Password is mangled, but too common / from a dictionary")
// ErrHashedDictionary gets returned when the password is hashed, but found in a dictionary
ErrHashedDictionary = errors.New("Password is hashed, but too common / from a dictionary")
// ErrFoundHIBP gets returned when the password has been found on https://haveibeenpwned.com
ErrFoundHIBP = errors.New("Password has been found inside haveibeenpwned.com database")
)