Ejemplo n.º 1
0
def get_tests(config={}):
    tests = []
    import test_DSA
    tests += test_DSA.get_tests(config=config)
    import test_RSA
    tests += test_RSA.get_tests(config=config)
    return tests
Ejemplo n.º 2
0
def get_tests(config={}):
    tests = []
    import test_DSA;       tests += test_DSA.get_tests(config=config)
    import test_RSA;       tests += test_RSA.get_tests(config=config)
    import test_importKey; tests += test_importKey.get_tests(config=config)
    return tests
Ejemplo n.º 3
0
def get_tests():
    tests = []
    import test_RSA
    tests += test_RSA.get_tests()
    return tests