SymmetricCipher: Support CTR mode

Includes AES-256-CTR non-stream tests
This commit is contained in:
Toni Spets 2017-10-29 17:07:01 +02:00
parent 8625e2c051
commit a81a5fa31b
4 changed files with 53 additions and 1 deletions

View file

@ -38,6 +38,7 @@ public:
enum Mode
{
Cbc,
Ctr,
Ecb,
Stream
};