aboutsummaryrefslogtreecommitdiff
path: root/autotests
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-05-20 21:32:57 +0200
committerGitHub <noreply@github.com>2022-05-20 21:32:57 +0200
commit729ba7da174eacc88bf9bd4e2e80eeab3fc92716 (patch)
treeaf15b8c6ea09cfd8a6640be4af634d32d3a78552 /autotests
parent004cbef8c2fb138310a12439f4b5907862df5654 (diff)
parent59f2b60835752fc87e75f456145d21cc5f77a433 (diff)
downloadlibquotient-729ba7da174eacc88bf9bd4e2e80eeab3fc92716.tar.gz
libquotient-729ba7da174eacc88bf9bd4e2e80eeab3fc92716.zip
Merge pull request #553 from TobiasFella/work/fixencryption
Truncate ciphertext buffer to actual size during file encryption
Diffstat (limited to 'autotests')
-rw-r--r--autotests/testfilecrypto.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/autotests/testfilecrypto.cpp b/autotests/testfilecrypto.cpp
index e6bec1fe..f9212376 100644
--- a/autotests/testfilecrypto.cpp
+++ b/autotests/testfilecrypto.cpp
@@ -12,6 +12,9 @@ void TestFileCrypto::encryptDecryptData()
QByteArray data = "ABCDEF";
auto [file, cipherText] = EncryptedFile::encryptFile(data);
auto decrypted = file.decryptFile(cipherText);
- QCOMPARE(data, decrypted);
+ // AES CTR produces ciphertext of the same size as the original
+ QCOMPARE(cipherText.size(), data.size());
+ QCOMPARE(decrypted.size(), data.size());
+ QCOMPARE(decrypted, data);
}
QTEST_APPLESS_MAIN(TestFileCrypto)