diff options
author | lloyd <[email protected]> | 2008-06-28 01:12:10 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-06-28 01:12:10 +0000 |
commit | c7994492cd10fc350686afa1ac55bc6be2b18d29 (patch) | |
tree | 42a54a6266038b12ba89198086c7efb21281605b /checks/validate.h | |
parent | adfc19b00668f641c07c89bd08452bd3099e99d2 (diff) |
Remove most of the direct references to the global_rng() call
Diffstat (limited to 'checks/validate.h')
-rw-r--r-- | checks/validate.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/checks/validate.h b/checks/validate.h index c411ff702..a562cd4b4 100644 --- a/checks/validate.h +++ b/checks/validate.h @@ -2,9 +2,13 @@ #ifndef BOTAN_TEST_VALIDATE_H__ #define BOTAN_TEST_VALIDATE_H__ +#include <botan/rng.h> +#include <string> + u32bit do_validation_tests(const std::string&, bool = true); u32bit do_bigint_tests(const std::string&); -u32bit do_pk_validation_tests(const std::string&); -void do_x509_tests(); +u32bit do_pk_validation_tests(const std::string&, + Botan::RandomNumberGenerator&); +void do_x509_tests(Botan::RandomNumberGenerator&); #endif |