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:
authorToni Spets <toni.spets@iki.fi>2017-10-29 18:07:01 +0300
committerToni Spets <toni.spets@iki.fi>2017-11-19 15:38:59 +0300
commita81a5fa31bb50b00b7091086013952fb0332fca1 (patch)
treeb703ab671662bfb072dadd67466da8caf1611515 /tests/TestSymmetricCipher.h
parent8625e2c0514e4336d1ef91ed932bd940dd98b6c8 (diff)
SymmetricCipher: Support CTR mode
Includes AES-256-CTR non-stream tests
Diffstat (limited to 'tests/TestSymmetricCipher.h')
-rw-r--r--tests/TestSymmetricCipher.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/TestSymmetricCipher.h b/tests/TestSymmetricCipher.h
index 009989500..cad13841a 100644
--- a/tests/TestSymmetricCipher.h
+++ b/tests/TestSymmetricCipher.h
@@ -29,6 +29,8 @@ private slots:
void initTestCase();
void testAes256CbcEncryption();
void testAes256CbcDecryption();
+ void testAes256CtrEncryption();
+ void testAes256CtrDecryption();
void testTwofish256CbcEncryption();
void testTwofish256CbcDecryption();
void testSalsa20();