summaryrefslogtreecommitdiff
path: root/tests/test_evp.py
diff options
context:
space:
mode:
authorMatthew Sullivan <sullivan.matt@gmail.com>2015-12-17 22:51:24 +0000
committerMatthew Sullivan <sullivan.matt@gmail.com>2015-12-17 22:51:24 +0000
commit3e977a800954602055164049482785f54b02c335 (patch)
tree96704b28de909cfde05b3ffc263992f2eaab0100 /tests/test_evp.py
parent86f2abbc7d6f5eb2d3dc5188f1f658ae869713ee (diff)
downloadm2crypto-3e977a800954602055164049482785f54b02c335.tar.gz
Add support for AES CTR (counter) mode
Diffstat (limited to 'tests/test_evp.py')
-rw-r--r--tests/test_evp.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_evp.py b/tests/test_evp.py
index 8cf7d12..97bb60f 100644
--- a/tests/test_evp.py
+++ b/tests/test_evp.py
@@ -240,9 +240,9 @@ class CipherTestCase(unittest.TestCase):
ciphers = [
'des_ede_ecb', 'des_ede_cbc', 'des_ede_cfb', 'des_ede_ofb',
'des_ede3_ecb', 'des_ede3_cbc', 'des_ede3_cfb', 'des_ede3_ofb',
- 'aes_128_ecb', 'aes_128_cbc', 'aes_128_cfb', 'aes_128_ofb',
- 'aes_192_ecb', 'aes_192_cbc', 'aes_192_cfb', 'aes_192_ofb',
- 'aes_256_ecb', 'aes_256_cbc', 'aes_256_cfb', 'aes_256_ofb']
+ 'aes_128_ecb', 'aes_128_cbc', 'aes_128_cfb', 'aes_128_ofb', 'aes_128_ctr',
+ 'aes_192_ecb', 'aes_192_cbc', 'aes_192_cfb', 'aes_192_ofb', 'aes_192_ctr',
+ 'aes_256_ecb', 'aes_256_cbc', 'aes_256_cfb', 'aes_256_ofb', 'aes_256_ctr']
nonfips_ciphers = ['bf_ecb', 'bf_cbc', 'bf_cfb', 'bf_ofb',
#'idea_ecb', 'idea_cbc', 'idea_cfb', 'idea_ofb',
'cast5_ecb', 'cast5_cbc', 'cast5_cfb', 'cast5_ofb',