__init__.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # -*- coding: utf-8 -*-
  2. #
  3. # SelfTest/Signature/__init__.py: Self-test for signature modules
  4. #
  5. # ===================================================================
  6. # The contents of this file are dedicated to the public domain. To
  7. # the extent that dedication to the public domain is not available,
  8. # everyone is granted a worldwide, perpetual, royalty-free,
  9. # non-exclusive license to exercise all rights associated with the
  10. # contents of this file for any purpose whatsoever.
  11. # No rights are reserved.
  12. #
  13. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  14. # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  15. # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  16. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  17. # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  18. # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  19. # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  20. # SOFTWARE.
  21. # ===================================================================
  22. """Self-test for signature modules"""
  23. import os
  24. def get_tests(config={}):
  25. tests = []
  26. from . import test_pkcs1_15; tests += test_pkcs1_15.get_tests(config=config)
  27. from . import test_pss; tests += test_pss.get_tests(config=config)
  28. from . import test_dss; tests += test_dss.get_tests(config=config)
  29. return tests
  30. if __name__ == '__main__':
  31. import unittest
  32. suite = lambda: unittest.TestSuite(get_tests())
  33. unittest.main(defaultTest='suite')
  34. # vim:set ts=4 sw=4 sts=4 expandtab: