blob: 6760cdbcdcc5724192d86cd5e6552acf2287c1d0 [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/**
2 * \file certs.h
Paul Bakkere0ccd0a2009-01-04 16:27:10 +00003 *
Paul Bakker83ded912010-03-21 17:46:26 +00004 * Copyright (C) 2006-2010, Paul Bakker <polarssl_maintainer at polarssl.org>
Paul Bakker77b385e2009-07-28 17:23:11 +00005 * All rights reserved.
Paul Bakkere0ccd0a2009-01-04 16:27:10 +00006 *
Paul Bakkere0ccd0a2009-01-04 16:27:10 +00007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Paul Bakker5121ce52009-01-03 21:22:43 +000020 */
Paul Bakker40e46942009-01-03 21:51:57 +000021#ifndef POLARSSL_CERTS_H
22#define POLARSSL_CERTS_H
Paul Bakker5121ce52009-01-03 21:22:43 +000023
24#ifdef __cplusplus
25extern "C" {
26#endif
27
Paul Bakkerff60ee62010-03-16 21:09:09 +000028extern const char test_ca_crt[];
29extern const char test_ca_key[];
30extern const char test_ca_pwd[];
31extern const char test_srv_crt[];
32extern const char test_srv_key[];
33extern const char test_cli_crt[];
34extern const char test_cli_key[];
Paul Bakker5121ce52009-01-03 21:22:43 +000035
36#ifdef __cplusplus
37}
38#endif
39
40#endif /* certs.h */