SymmetricCipher: Add support for AES-128-CBC

This commit is contained in:
Toni Spets
2018-02-06 19:20:10 +02:00
committed by Janek Bevendorff
parent 80d85965e9
commit d2359df2b0
5 changed files with 91 additions and 0 deletions

View File

@@ -57,6 +57,7 @@ bool SymmetricCipher::isInitalized() const
SymmetricCipherBackend* SymmetricCipher::createBackend(Algorithm algo, Mode mode, Direction direction)
{
switch (algo) {
case Aes128:
case Aes256:
case Twofish:
case Salsa20: