__init__.py 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # -*- coding: utf-8 -*-
  2. #
  3. # SelfTest/PublicKey/__init__.py: Self-test for public key crypto
  4. #
  5. # Written in 2008 by Dwayne C. Litzenberger <dlitz@dlitz.net>
  6. #
  7. # ===================================================================
  8. # The contents of this file are dedicated to the public domain. To
  9. # the extent that dedication to the public domain is not available,
  10. # everyone is granted a worldwide, perpetual, royalty-free,
  11. # non-exclusive license to exercise all rights associated with the
  12. # contents of this file for any purpose whatsoever.
  13. # No rights are reserved.
  14. #
  15. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  16. # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  17. # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  18. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  19. # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  20. # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  21. # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  22. # SOFTWARE.
  23. # ===================================================================
  24. """Self-test for public-key crypto"""
  25. __revision__ = "$Id$"
  26. import os
  27. def get_tests(config={}):
  28. tests = []
  29. from Cryptodome.SelfTest.PublicKey import test_DSA; tests += test_DSA.get_tests(config=config)
  30. from Cryptodome.SelfTest.PublicKey import test_RSA; tests += test_RSA.get_tests(config=config)
  31. from Cryptodome.SelfTest.PublicKey import test_ECC; tests += test_ECC.get_tests(config=config)
  32. from Cryptodome.SelfTest.PublicKey import test_import_DSA
  33. tests +=test_import_DSA.get_tests(config=config)
  34. from Cryptodome.SelfTest.PublicKey import test_import_RSA
  35. tests += test_import_RSA.get_tests(config=config)
  36. from Cryptodome.SelfTest.PublicKey import test_import_ECC
  37. tests += test_import_ECC.get_tests(config=config)
  38. from Cryptodome.SelfTest.PublicKey import test_ElGamal; tests += test_ElGamal.get_tests(config=config)
  39. return tests
  40. if __name__ == '__main__':
  41. import unittest
  42. suite = lambda: unittest.TestSuite(get_tests())
  43. unittest.main(defaultTest='suite')
  44. # vim:set ts=4 sw=4 sts=4 expandtab: