def get_tests(config={}):
    tests = []
    from Crypto.SelfTest.Random import Fortuna;             tests += Fortuna.get_tests(config=config)
    from Crypto.SelfTest.Random import OSRNG;               tests += OSRNG.get_tests(config=config)
    from Crypto.SelfTest.Random import test_random;         tests += test_random.get_tests(config=config)
    from Crypto.SelfTest.Random import test_rpoolcompat;    tests += test_rpoolcompat.get_tests(config=config)
    return tests
Exemple #2
0
def get_tests(config={}):
    tests = []
    from Crypto.SelfTest.Random import Fortuna;             tests += Fortuna.get_tests(config=config)
    from Crypto.SelfTest.Random import OSRNG;               tests += OSRNG.get_tests(config=config)
    from Crypto.SelfTest.Random import test_random;         tests += test_random.get_tests(config=config)
    from Crypto.SelfTest.Random import test_rpoolcompat;    tests += test_rpoolcompat.get_tests(config=config)
    from Crypto.SelfTest.Random import test__UserFriendlyRNG; tests += test__UserFriendlyRNG.get_tests(config=config)
    return tests
Exemple #3
0
def get_tests(config={}):
    tests = []
    from Crypto.SelfTest.Random import Fortuna
    tests += Fortuna.get_tests(config=config)
    from Crypto.SelfTest.Random import OSRNG
    tests += OSRNG.get_tests(config=config)
    from Crypto.SelfTest.Random import test_random
    tests += test_random.get_tests(config=config)
    from Crypto.SelfTest.Random import test_rpoolcompat
    tests += test_rpoolcompat.get_tests(config=config)
    return tests
def get_tests(config={}):
    tests = []
    from Crypto.SelfTest.Random import test_random
    tests += test_random.get_tests(config=config)
    return tests
Exemple #5
0
def get_tests(config={}):
    tests = []
    from Crypto.SelfTest.Random import test_random;         tests += test_random.get_tests(config=config)
    return tests