From 5c057c62ac31e94ed3a2524aea51aae14b0fa993 Mon Sep 17 00:00:00 2001 From: komuw Date: Fri, 16 Aug 2024 10:09:44 +0300 Subject: [PATCH] g --- cry/enc.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cry/enc.go b/cry/enc.go index 1165c595..84838dfc 100644 --- a/cry/enc.go +++ b/cry/enc.go @@ -41,9 +41,9 @@ var ( // // The values recommended are: // golang.org/x/crypto/argon2 - time = uint32(1) - memory = uint32(64 * 1024) // 64MB - threads = uint8(runtime.NumCPU()) + time = uint32(1) //nolint:gochecknoglobals + memory = uint32(64 * 1024) //nolint:gochecknoglobals // 64MB + threads = uint8(runtime.NumCPU()) //nolint:gochecknoglobals ) // Enc is an AEAD cipher mode providing authenticated encryption with associated data, ie [cipher.AEAD]