diff options
author | lloyd <[email protected]> | 2008-06-12 14:47:25 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-06-12 14:47:25 +0000 |
commit | b730ba19274f5422adb70df6d3328c46af35142f (patch) | |
tree | 4eb96b82b4489215587ee4b01ddafff9d9962f14 /checks/check.cpp | |
parent | 1164b265ebecfb2132b07c9492e71881c69b2be4 (diff) |
Fix some -Wmissing-declarations warnings
Diffstat (limited to 'checks/check.cpp')
-rw-r--r-- | checks/check.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/checks/check.cpp b/checks/check.cpp index d76e91f0b..64b7c0a01 100644 --- a/checks/check.cpp +++ b/checks/check.cpp @@ -17,15 +17,14 @@ using namespace Botan; #include "getopt.h" +#include "bench.h" +#include "validate.h" const std::string VALIDATION_FILE = "checks/validate.dat"; const std::string BIGINT_VALIDATION_FILE = "checks/mp_valid.dat"; const std::string PK_VALIDATION_FILE = "checks/pk_valid.dat"; const std::string EXPECTED_FAIL_FILE = "checks/fail.dat"; -void benchmark(const std::string&, bool html, double seconds); -void bench_pk(const std::string&, bool html, double seconds); -u32bit bench_algo(const std::string&, double); int validate(); int main(int argc, char* argv[]) @@ -131,9 +130,6 @@ int main(int argc, char* argv[]) int validate() { void test_types(); - u32bit do_validation_tests(const std::string&, bool = true); - u32bit do_bigint_tests(const std::string&); - u32bit do_pk_validation_tests(const std::string&); std::cout << "Beginning validation tests..." << std::endl; |