summaryrefslogtreecommitdiff
path: root/pct-speedtest.py
diff options
context:
space:
mode:
authorLegrandin <gooksankoo@hoiptorrow.mailexpire.com>2012-05-14 19:52:30 +0200
committerLegrandin <gooksankoo@hoiptorrow.mailexpire.com>2012-05-14 19:52:30 +0200
commit67d8cd1aaf1863cd7510baebbef9b395015312e4 (patch)
tree6bbcdd98516460c033713599b40aa77e8d4eac31 /pct-speedtest.py
parentd946a0aa4ebcc82316a3e42fbb69305e4d44dcd1 (diff)
downloadpycrypto-67d8cd1aaf1863cd7510baebbef9b395015312e4.tar.gz
Removed PGP mode from block ciphers
Diffstat (limited to 'pct-speedtest.py')
-rw-r--r--pct-speedtest.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/pct-speedtest.py b/pct-speedtest.py
index 6b84ef0..835286c 100644
--- a/pct-speedtest.py
+++ b/pct-speedtest.py
@@ -203,7 +203,6 @@ class Benchmark:
self.test_key_setup(cipher_name, module, key_bytes, module.MODE_CBC)
self.test_encryption("%s-CBC" % (cipher_name,), module, key_bytes, module.MODE_CBC)
self.test_encryption("%s-CFB" % (cipher_name,), module, key_bytes, module.MODE_CFB)
- self.test_encryption("%s-PGP" % (cipher_name,), module, key_bytes, module.MODE_PGP)
self.test_encryption("%s-OFB" % (cipher_name,), module, key_bytes, module.MODE_OFB)
self.test_encryption("%s-ECB" % (cipher_name,), module, key_bytes, module.MODE_ECB)