diff options
Diffstat (limited to 'internal/pwhash/pwhash.go')
| -rw-r--r-- | internal/pwhash/pwhash.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/pwhash/pwhash.go b/internal/pwhash/pwhash.go index 22b5368..d8a1b33 100644 --- a/internal/pwhash/pwhash.go +++ b/internal/pwhash/pwhash.go @@ -7,7 +7,7 @@ import ( const SaltSize = 8 -const defaultIter = 12500992 // from tools/finditer +const defaultIter = 12175430 // from tools/finditer func HashIter(password string, salt []byte, iter int) ([]byte, error) { return pbkdf2.Key(sha512.New, password, salt, iter, 32) |
