Skip to content

Commit

Permalink
g
Browse files Browse the repository at this point in the history
  • Loading branch information
komuw committed Aug 16, 2024
1 parent c6b4c27 commit 5c057c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cry/enc.go
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 5c057c6

Please sign in to comment.