Skip to content

Commit 7a9b6b1

Browse files
author
Marek Dalewski
committed
change: remove unneded comments
1 parent c89312c commit 7a9b6b1

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

pkg/dbcrypt/cipher.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ func newDbCipherGcmAesWithoutKdf(password, passwordSalt string) dbCipher {
3535
}
3636

3737
func newDbCipherGcmAesWithArgon2idKdf(password, passwordSalt string) dbCipher {
38-
// "v2" uses proper KDF (argon2id) to get the key.
3938
key := argon2.IDKey([]byte(password), []byte(passwordSalt), 1, 64*1024, 4, 32)
4039
return newDbCipherGcmAes(key)
4140
}

0 commit comments

Comments
 (0)