blob: 9397319144c532e5f462abbea4df8606038db544 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef BOTAN_TEST_VALIDATE_H__
#define BOTAN_TEST_VALIDATE_H__
#include <botan/types.h>
#include <botan/rng.h>
#include <string>
using Botan::u32bit;
u32bit do_validation_tests(const std::string&,
Botan::RandomNumberGenerator& rng,
bool = true);
u32bit do_bigint_tests(const std::string&,
Botan::RandomNumberGenerator& rng);
u32bit do_gfpmath_tests(Botan::RandomNumberGenerator& rng);
u32bit do_pk_validation_tests(const std::string&,
Botan::RandomNumberGenerator&);
u32bit do_ecdsa_tests(Botan::RandomNumberGenerator& rng);
void do_x509_tests(Botan::RandomNumberGenerator&);
#endif
|