From 26235f94f87b01058cc06e69902f7fb30bffb22f Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Sun, 7 Dec 2025 21:00:16 -0800 Subject: Update finditer --- internal/pwhash/pwhash.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal') 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) -- cgit v1.3.1