From 466cbd5a1be7d274a45506add79c21e06ee53381 Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Fri, 24 Oct 2025 15:18:39 -0700 Subject: Use argon2 for password hashing --- sym_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sym_test.go') diff --git a/sym_test.go b/sym_test.go index 4d648d3..bb81ab8 100644 --- a/sym_test.go +++ b/sym_test.go @@ -9,13 +9,13 @@ import ( var testEncryptOptions = func() encryptOptions { opts := defaultEncryptOptions - opts.iterations = 10 + opts.memory = 1 return opts }() var testDecryptOptions = func() decryptOptions { opts := defaultDecryptOptions - opts.iterations = 10 + opts.memory = 1 return opts }() -- cgit v1.3.1