Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/SymmetricCipher.cpp')
-rw-r--r--src/crypto/SymmetricCipher.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/crypto/SymmetricCipher.cpp b/src/crypto/SymmetricCipher.cpp
index cdb0d1f56..ee4295eec 100644
--- a/src/crypto/SymmetricCipher.cpp
+++ b/src/crypto/SymmetricCipher.cpp
@@ -126,6 +126,8 @@ int SymmetricCipher::algorithmIvSize(Algorithm algo)
switch (algo) {
case ChaCha20:
return 12;
+ case Aes128:
+ return 16;
case Aes256:
return 16;
case Twofish: