Example #1
0
def get_tests(config={}):
    tests = []
    from Crypto.SelfTest.PublicKey import test_DSA;       tests += test_DSA.get_tests(config=config)
    from Crypto.SelfTest.PublicKey import test_RSA;       tests += test_RSA.get_tests(config=config)
    from Crypto.SelfTest.PublicKey import test_importKey; tests += test_importKey.get_tests(config=config)
    from Crypto.SelfTest.PublicKey import test_ElGamal;   tests += test_ElGamal.get_tests(config=config)
    return tests
Example #2
0
def get_tests(config={}):
    tests = []
    tests += test_DSA.get_tests(config=config)
    tests += test_RSA.get_tests(config=config)
    tests += test_ECC_NIST.get_tests(config=config)
    tests += test_ECC_25519.get_tests(config=config)
    tests += test_ECC_448.get_tests(config=config)

    tests += test_import_DSA.get_tests(config=config)
    tests += test_import_RSA.get_tests(config=config)
    tests += test_import_ECC.get_tests(config=config)

    tests += test_ElGamal.get_tests(config=config)
    return tests