aboutsummaryrefslogtreecommitdiffstats
path: root/checks/validate.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2013-12-31 23:05:25 +0000
committerlloyd <[email protected]>2013-12-31 23:05:25 +0000
commit25f722680d9e754da5e58363f9706d6dd34f5ba2 (patch)
treead88ed0f307e70b04486b9e11d37c838ceca4a97 /checks/validate.h
parentf50c061737de8329bfc29df99bc863fe2720c673 (diff)
Test report is more useful now
Diffstat (limited to 'checks/validate.h')
-rw-r--r--checks/validate.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/checks/validate.h b/checks/validate.h
deleted file mode 100644
index f32e7a098..000000000
--- a/checks/validate.h
+++ /dev/null
@@ -1,32 +0,0 @@
-
-#ifndef BOTAN_TEST_VALIDATE_H__
-#define BOTAN_TEST_VALIDATE_H__
-
-#include <botan/types.h>
-#include <botan/rng.h>
-#include <string>
-#include <functional>
-#include <istream>
-#include <map>
-
-using Botan::RandomNumberGenerator;
-
-using Botan::u32bit;
-
-u32bit do_bigint_tests(const std::string&,
- RandomNumberGenerator& rng);
-
-u32bit do_pk_validation_tests(const std::string&,
- RandomNumberGenerator&);
-
-void do_ec_tests(RandomNumberGenerator& rng);
-
-u32bit do_ecdsa_tests(RandomNumberGenerator& rng);
-u32bit do_ecdh_tests(RandomNumberGenerator& rng);
-u32bit do_cvc_tests(RandomNumberGenerator& rng);
-
-void do_x509_tests(RandomNumberGenerator&);
-
-size_t do_tls_tests(RandomNumberGenerator& rng);
-
-#endif