summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLegrandin <gooksankoo@hoiptorrow.mailexpire.com>2012-04-27 00:49:35 +0200
committerLegrandin <gooksankoo@hoiptorrow.mailexpire.com>2012-04-27 00:49:35 +0200
commit79ca3544e926ce591ca866a8ec235f89287b977d (patch)
tree5a07c3fb799447593e0ed2f1dc6144e05574b58e
parent8c94c6f5ce5f579e9b896f32bac5dd3ff639fb5c (diff)
downloadpycrypto-79ca3544e926ce591ca866a8ec235f89287b977d.tar.gz
Add ElGamal tests to the test suite.
-rw-r--r--lib/Crypto/SelfTest/PublicKey/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Crypto/SelfTest/PublicKey/__init__.py b/lib/Crypto/SelfTest/PublicKey/__init__.py
index 88a62ea..61ba53f 100644
--- a/lib/Crypto/SelfTest/PublicKey/__init__.py
+++ b/lib/Crypto/SelfTest/PublicKey/__init__.py
@@ -33,6 +33,7 @@ def get_tests(config={}):
from Crypto.SelfTest.PublicKey import test_DSA; tests += test_DSA.get_tests(config=config)
from Crypto.SelfTest.PublicKey import test_RSA; tests += test_RSA.get_tests(config=config)
from Crypto.SelfTest.PublicKey import test_importKey; tests += test_importKey.get_tests(config=config)
+ from Crypto.SelfTest.PublicKey import test_ElGamal; tests += test_ElGamal.get_tests(config=config)
return tests
if __name__ == '__main__':