blob: 54af3979869f623c17ccbee8f485d798527c3bfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef BOTAN_TEST_VALIDATE_H__
#define BOTAN_TEST_VALIDATE_H__
#include <botan/rng.h>
#include <string>
u32bit do_validation_tests(const std::string&,
Botan::RandomNumberGenerator& rng,
bool = true);
u32bit do_bigint_tests(const std::string&,
Botan::RandomNumberGenerator& rng);
u32bit do_pk_validation_tests(const std::string&,
Botan::RandomNumberGenerator&);
void do_x509_tests(Botan::RandomNumberGenerator&);
#endif
|