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:
authorFelix Geyer <debfx@fobos.de>2015-05-10 01:02:08 +0300
committerFelix Geyer <debfx@fobos.de>2015-05-10 01:02:08 +0300
commitade684d501bb48c6002e3248f4e0b823d3a02d8c (patch)
treeb010428d4612d07369185da42e66feb0180f2fed /src/crypto/Crypto.h
parent4362c3ea38ac68af126adf7816b049bb3dea3809 (diff)
Crypto::selfTest(): test AES in ECB mode.
Diffstat (limited to 'src/crypto/Crypto.h')
-rw-r--r--src/crypto/Crypto.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/crypto/Crypto.h b/src/crypto/Crypto.h
index 07f6454fe..b801cbb54 100644
--- a/src/crypto/Crypto.h
+++ b/src/crypto/Crypto.h
@@ -36,7 +36,8 @@ private:
static bool selfTest();
static void raiseError(const QString& str);
static bool testSha256();
- static bool testAes256();
+ static bool testAes256Cbc();
+ static bool testAes256Ecb();
static bool testTwofish();
static bool testSalsa20();