1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #ifndef POLARSSL_CERTS_H
- #define POLARSSL_CERTS_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- extern const char test_ca_crt[];
- extern const char test_ca_key[];
- extern const char test_ca_pwd[];
- extern const char test_srv_crt[];
- extern const char test_srv_key[];
- extern const char test_cli_crt[];
- extern const char test_cli_key[];
- extern const char test_dhm_params[];
- #ifdef __cplusplus
- }
- #endif
- #endif
|