__init__.py 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # -*- coding: utf-8 -*-
  2. #
  3. # SelfTest/Cipher/__init__.py: Self-test for cipher modules
  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 cipher modules"""
  25. __revision__ = "$Id$"
  26. def get_tests(config={}):
  27. tests = []
  28. from tls.Crypto.SelfTest.Cipher import test_AES; tests += test_AES.get_tests(config=config)
  29. from tls.Crypto.SelfTest.Cipher import test_ARC2; tests += test_ARC2.get_tests(config=config)
  30. from tls.Crypto.SelfTest.Cipher import test_ARC4; tests += test_ARC4.get_tests(config=config)
  31. from tls.Crypto.SelfTest.Cipher import test_Blowfish; tests += test_Blowfish.get_tests(config=config)
  32. from tls.Crypto.SelfTest.Cipher import test_CAST; tests += test_CAST.get_tests(config=config)
  33. from tls.Crypto.SelfTest.Cipher import test_DES3; tests += test_DES3.get_tests(config=config)
  34. from tls.Crypto.SelfTest.Cipher import test_DES; tests += test_DES.get_tests(config=config)
  35. from tls.Crypto.SelfTest.Cipher import test_Salsa20; tests += test_Salsa20.get_tests(config=config)
  36. from tls.Crypto.SelfTest.Cipher import test_ChaCha20; tests += test_ChaCha20.get_tests(config=config)
  37. from tls.Crypto.SelfTest.Cipher import test_ChaCha20_Poly1305; tests += test_ChaCha20_Poly1305.get_tests(config=config)
  38. from tls.Crypto.SelfTest.Cipher import test_pkcs1_15; tests += test_pkcs1_15.get_tests(config=config)
  39. from tls.Crypto.SelfTest.Cipher import test_pkcs1_oaep; tests += test_pkcs1_oaep.get_tests(config=config)
  40. from tls.Crypto.SelfTest.Cipher import test_OCB; tests += test_OCB.get_tests(config=config)
  41. from tls.Crypto.SelfTest.Cipher import test_CBC; tests += test_CBC.get_tests(config=config)
  42. from tls.Crypto.SelfTest.Cipher import test_CFB; tests += test_CFB.get_tests(config=config)
  43. from tls.Crypto.SelfTest.Cipher import test_OpenPGP; tests += test_OpenPGP.get_tests(config=config)
  44. from tls.Crypto.SelfTest.Cipher import test_OFB; tests += test_OFB.get_tests(config=config)
  45. from tls.Crypto.SelfTest.Cipher import test_CTR; tests += test_CTR.get_tests(config=config)
  46. from tls.Crypto.SelfTest.Cipher import test_CCM; tests += test_CCM.get_tests(config=config)
  47. from tls.Crypto.SelfTest.Cipher import test_EAX; tests += test_EAX.get_tests(config=config)
  48. from tls.Crypto.SelfTest.Cipher import test_GCM; tests += test_GCM.get_tests(config=config)
  49. from tls.Crypto.SelfTest.Cipher import test_SIV; tests += test_SIV.get_tests(config=config)
  50. return tests
  51. if __name__ == '__main__':
  52. import unittest
  53. suite = lambda: unittest.TestSuite(get_tests())
  54. unittest.main(defaultTest='suite')
  55. # vim:set ts=4 sw=4 sts=4 expandtab: