summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLegrandin <helderijs@gmail.com>2013-09-10 07:26:23 +0200
committerDwayne Litzenberger <dlitz@dlitz.net>2013-10-20 13:30:21 -0700
commit9a5faf9642660eab16d13d55ae539b41a711e5c9 (patch)
treedbdb7f8b8f90ae289a022c8749de6a51b2f3845c
parent5ca4c71c04e68a8fdbf7ef18a719e606793c55dd (diff)
downloadpycrypto-9a5faf9642660eab16d13d55ae539b41a711e5c9.tar.gz
Added KDF unit tests to suite
-rw-r--r--lib/Crypto/SelfTest/Protocol/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Crypto/SelfTest/Protocol/__init__.py b/lib/Crypto/SelfTest/Protocol/__init__.py
index a62c670..33ff581 100644
--- a/lib/Crypto/SelfTest/Protocol/__init__.py
+++ b/lib/Crypto/SelfTest/Protocol/__init__.py
@@ -31,6 +31,7 @@ def get_tests(config={}):
from Crypto.SelfTest.Protocol import test_chaffing; tests += test_chaffing.get_tests(config=config)
from Crypto.SelfTest.Protocol import test_rfc1751; tests += test_rfc1751.get_tests(config=config)
from Crypto.SelfTest.Protocol import test_AllOrNothing; tests += test_AllOrNothing.get_tests(config=config)
+ from Crypto.SelfTest.Protocol import test_KDF; tests += test_KDF.get_tests(config=config)
return tests
if __name__ == '__main__':