blob: c2ad607c28f90c91ee5fd86a06ae8b0343479628 [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/**
2 * \file certs.h
Paul Bakkere0ccd0a2009-01-04 16:27:10 +00003 *
Paul Bakkerf3b86c12011-01-27 15:24:17 +00004 * \brief Sample certificates and DHM parameters for testing
Paul Bakker37ca75d2011-01-06 12:28:03 +00005 *
Paul Bakker530927b2015-02-13 14:24:10 +01006 * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
Paul Bakkerb96f1542010-07-18 20:36:00 +00007 *
Manuel Pégourié-Gonnarde12abf92015-01-28 17:13:45 +00008 * This file is part of mbed TLS (https://polarssl.org)
Paul Bakkere0ccd0a2009-01-04 16:27:10 +00009 *
Paul Bakkere0ccd0a2009-01-04 16:27:10 +000010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Paul Bakker5121ce52009-01-03 21:22:43 +000023 */
Paul Bakker40e46942009-01-03 21:51:57 +000024#ifndef POLARSSL_CERTS_H
25#define POLARSSL_CERTS_H
Paul Bakker5121ce52009-01-03 21:22:43 +000026
27#ifdef __cplusplus
28extern "C" {
29#endif
30
Paul Bakkerff60ee62010-03-16 21:09:09 +000031extern const char test_ca_crt[];
32extern const char test_ca_key[];
33extern const char test_ca_pwd[];
34extern const char test_srv_crt[];
35extern const char test_srv_key[];
36extern const char test_cli_crt[];
37extern const char test_cli_key[];
Paul Bakker1b57b062011-01-06 15:48:19 +000038extern const char test_dhm_params[];
Paul Bakker5121ce52009-01-03 21:22:43 +000039
40#ifdef __cplusplus
41}
42#endif
43
44#endif /* certs.h */