blob: adea9ebe69388a49502a7ccf902fdf31c14107a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*************************************************
* Startup Self Test Header File *
* (C) 1999-2007 Jack Lloyd *
*************************************************/
#ifndef BOTAN_SELF_TEST_H__
#define BOTAN_SELF_TEST_H__
#include <botan/types.h>
namespace Botan {
/*************************************************
* Self Tests *
*************************************************/
BOTAN_DLL bool passes_self_tests();
}
#endif
|