Correct constant comment

This commit is contained in:
2025-05-03 18:49:23 -04:00
parent 55c54acfcc
commit 18ea71e7e4
+3 -1
View File
@@ -5,12 +5,14 @@ import (
"golang.org/x/crypto/chacha20poly1305"
)
// parameters for Argon2
const (
// parameters for Argon2
argonTime = 1
argonMemory = 64 * 1024
argonThreads = 4
argonKeyLen = chacha20poly1305.KeySize
// general constants
saltSize = 16
)