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