mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-06 09:25:01 -05:00
32 lines
788 B
C
32 lines
788 B
C
|
|
||
|
#ifndef BOTAN_TEST_VALIDATE_H__
|
||
|
#define BOTAN_TEST_VALIDATE_H__
|
||
|
|
||
|
#include <botan/types.h>
|
||
|
#include <botan/rng.h>
|
||
|
#include <string>
|
||
|
|
||
|
using Botan::RandomNumberGenerator;
|
||
|
|
||
|
using Botan::u32bit;
|
||
|
|
||
|
u32bit do_validation_tests(const std::string&,
|
||
|
RandomNumberGenerator& rng,
|
||
|
bool = true);
|
||
|
|
||
|
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&);
|
||
|
|
||
|
#endif
|