diff options
author | Jack Lloyd <[email protected]> | 2021-04-08 13:27:44 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2021-04-08 13:27:44 -0400 |
commit | 662056bb661d14d2a80ad57ddfad55f11ed0e93c (patch) | |
tree | 9b9cbb774c4e8d52fd1c3377c5f64a41a53aebb3 /src/lib/misc/cryptobox/cryptobox.cpp | |
parent | 0d6c1ae5ad59fd621fa599611f304ab7c65e421c (diff) |
Remove unused variable
Diffstat (limited to 'src/lib/misc/cryptobox/cryptobox.cpp')
-rw-r--r-- | src/lib/misc/cryptobox/cryptobox.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/misc/cryptobox/cryptobox.cpp b/src/lib/misc/cryptobox/cryptobox.cpp index 7049baa85..df2db5605 100644 --- a/src/lib/misc/cryptobox/cryptobox.cpp +++ b/src/lib/misc/cryptobox/cryptobox.cpp @@ -35,7 +35,6 @@ const size_t MAC_OUTPUT_LEN = 20; const size_t PBKDF_SALT_LEN = 10; const size_t PBKDF_ITERATIONS = 8 * 1024; -const size_t PBKDF_OUTPUT_LEN = CIPHER_KEY_LEN + MAC_KEY_LEN + CIPHER_IV_LEN; const size_t CRYPTOBOX_HEADER_LEN = VERSION_CODE_LEN + PBKDF_SALT_LEN + MAC_OUTPUT_LEN; } |