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 = []
    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_Paillier; tests += test_Paillier.get_tests(config=config)
    return tests
Example #3
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_ECDSA;       tests += test_ECDSA.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