2009-01-03 21:22:43 +00:00
|
|
|
/**
|
|
|
|
* \file certs.h
|
2009-01-04 16:27:10 +00:00
|
|
|
*
|
2011-01-27 15:24:17 +00:00
|
|
|
* \brief Sample certificates and DHM parameters for testing
|
2018-01-05 15:33:17 +00:00
|
|
|
*/
|
|
|
|
/*
|
2015-07-27 09:11:48 +00:00
|
|
|
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
|
2015-09-04 12:21:07 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2010-07-18 20:36:00 +00:00
|
|
|
*
|
2015-09-04 12:21:07 +00:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2010-07-18 20:36:00 +00:00
|
|
|
*
|
2015-09-04 12:21:07 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2009-01-04 16:27:10 +00:00
|
|
|
*
|
2015-09-04 12:21:07 +00:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2009-01-04 16:27:10 +00:00
|
|
|
*
|
2015-09-04 12:21:07 +00:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2009-01-03 21:22:43 +00:00
|
|
|
*/
|
2015-04-08 10:49:31 +00:00
|
|
|
#ifndef MBEDTLS_CERTS_H
|
|
|
|
#define MBEDTLS_CERTS_H
|
2009-01-03 21:22:43 +00:00
|
|
|
|
2018-02-14 14:02:41 +00:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
|
|
|
#include "config.h"
|
|
|
|
#else
|
|
|
|
#include MBEDTLS_CONFIG_FILE
|
|
|
|
#endif
|
|
|
|
|
2015-03-27 08:56:18 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2009-01-03 21:22:43 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#if defined(MBEDTLS_PEM_PARSE_C)
|
2015-03-27 09:20:26 +00:00
|
|
|
/* Concatenation of all CA certificates in PEM format if available */
|
2015-04-08 10:49:31 +00:00
|
|
|
extern const char mbedtls_test_cas_pem[];
|
|
|
|
extern const size_t mbedtls_test_cas_pem_len;
|
2015-03-27 09:23:53 +00:00
|
|
|
#endif
|
2013-09-25 11:23:33 +00:00
|
|
|
|
2015-03-27 09:20:26 +00:00
|
|
|
/* List of all CA certificates, terminated by NULL */
|
2015-04-08 10:49:31 +00:00
|
|
|
extern const char * mbedtls_test_cas[];
|
|
|
|
extern const size_t mbedtls_test_cas_len[];
|
2015-03-27 09:20:26 +00:00
|
|
|
|
2013-09-25 12:05:49 +00:00
|
|
|
/*
|
|
|
|
* Convenience for users who just want a certificate:
|
2015-03-06 09:42:40 +00:00
|
|
|
* RSA by default, or ECDSA if RSA is not available
|
2013-09-25 12:05:49 +00:00
|
|
|
*/
|
2015-04-08 10:49:31 +00:00
|
|
|
extern const char * mbedtls_test_ca_crt;
|
|
|
|
extern const size_t mbedtls_test_ca_crt_len;
|
|
|
|
extern const char * mbedtls_test_ca_key;
|
|
|
|
extern const size_t mbedtls_test_ca_key_len;
|
|
|
|
extern const char * mbedtls_test_ca_pwd;
|
|
|
|
extern const size_t mbedtls_test_ca_pwd_len;
|
|
|
|
extern const char * mbedtls_test_srv_crt;
|
|
|
|
extern const size_t mbedtls_test_srv_crt_len;
|
|
|
|
extern const char * mbedtls_test_srv_key;
|
|
|
|
extern const size_t mbedtls_test_srv_key_len;
|
|
|
|
extern const char * mbedtls_test_cli_crt;
|
|
|
|
extern const size_t mbedtls_test_cli_crt_len;
|
|
|
|
extern const char * mbedtls_test_cli_key;
|
|
|
|
extern const size_t mbedtls_test_cli_key_len;
|
2013-09-24 17:33:17 +00:00
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#if defined(MBEDTLS_ECDSA_C)
|
|
|
|
extern const char mbedtls_test_ca_crt_ec[];
|
|
|
|
extern const size_t mbedtls_test_ca_crt_ec_len;
|
|
|
|
extern const char mbedtls_test_ca_key_ec[];
|
|
|
|
extern const size_t mbedtls_test_ca_key_ec_len;
|
|
|
|
extern const char mbedtls_test_ca_pwd_ec[];
|
|
|
|
extern const size_t mbedtls_test_ca_pwd_ec_len;
|
|
|
|
extern const char mbedtls_test_srv_crt_ec[];
|
|
|
|
extern const size_t mbedtls_test_srv_crt_ec_len;
|
|
|
|
extern const char mbedtls_test_srv_key_ec[];
|
|
|
|
extern const size_t mbedtls_test_srv_key_ec_len;
|
|
|
|
extern const char mbedtls_test_cli_crt_ec[];
|
|
|
|
extern const size_t mbedtls_test_cli_crt_ec_len;
|
|
|
|
extern const char mbedtls_test_cli_key_ec[];
|
|
|
|
extern const size_t mbedtls_test_cli_key_ec_len;
|
2013-09-24 17:33:17 +00:00
|
|
|
#endif
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#if defined(MBEDTLS_RSA_C)
|
|
|
|
extern const char mbedtls_test_ca_crt_rsa[];
|
|
|
|
extern const size_t mbedtls_test_ca_crt_rsa_len;
|
|
|
|
extern const char mbedtls_test_ca_key_rsa[];
|
|
|
|
extern const size_t mbedtls_test_ca_key_rsa_len;
|
|
|
|
extern const char mbedtls_test_ca_pwd_rsa[];
|
|
|
|
extern const size_t mbedtls_test_ca_pwd_rsa_len;
|
|
|
|
extern const char mbedtls_test_srv_crt_rsa[];
|
|
|
|
extern const size_t mbedtls_test_srv_crt_rsa_len;
|
|
|
|
extern const char mbedtls_test_srv_key_rsa[];
|
|
|
|
extern const size_t mbedtls_test_srv_key_rsa_len;
|
|
|
|
extern const char mbedtls_test_cli_crt_rsa[];
|
|
|
|
extern const size_t mbedtls_test_cli_crt_rsa_len;
|
|
|
|
extern const char mbedtls_test_cli_key_rsa[];
|
|
|
|
extern const size_t mbedtls_test_cli_key_rsa_len;
|
2013-09-24 17:33:17 +00:00
|
|
|
#endif
|
|
|
|
|
2009-01-03 21:22:43 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* certs.h */
|