Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame^] | 1 | /** |
2 | * \file certs.h | ||||
3 | */ | ||||
4 | #ifndef XYSSL_CERTS_H | ||||
5 | #define XYSSL_CERTS_H | ||||
6 | |||||
7 | #ifdef __cplusplus | ||||
8 | extern "C" { | ||||
9 | #endif | ||||
10 | |||||
11 | extern char test_ca_crt[]; | ||||
12 | extern char test_ca_key[]; | ||||
13 | extern char test_ca_pwd[]; | ||||
14 | extern char test_srv_crt[]; | ||||
15 | extern char test_srv_key[]; | ||||
16 | extern char test_cli_crt[]; | ||||
17 | extern char test_cli_key[]; | ||||
18 | extern char xyssl_ca_crt[]; | ||||
19 | |||||
20 | #ifdef __cplusplus | ||||
21 | } | ||||
22 | #endif | ||||
23 | |||||
24 | #endif /* certs.h */ |