Adjust argon2id parameters

This commit is contained in:
Trevor Slocum 2024-09-05 19:43:49 -07:00
parent c6d042e080
commit 61fffdea51

View file

@ -100,8 +100,8 @@ var (
var argon2idParameters = &argon2id.Params{
Memory: 128 * 1024,
Iterations: 16,
Parallelism: 4,
Iterations: 2,
Parallelism: 2,
SaltLength: 16,
KeyLength: 64,
}