mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 13:05:38 +01:00
25 lines
382 B
C
25 lines
382 B
C
|
/**
|
||
|
* \file certs.h
|
||
|
*/
|
||
|
#ifndef XYSSL_CERTS_H
|
||
|
#define XYSSL_CERTS_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
extern char test_ca_crt[];
|
||
|
extern char test_ca_key[];
|
||
|
extern char test_ca_pwd[];
|
||
|
extern char test_srv_crt[];
|
||
|
extern char test_srv_key[];
|
||
|
extern char test_cli_crt[];
|
||
|
extern char test_cli_key[];
|
||
|
extern char xyssl_ca_crt[];
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* certs.h */
|