2018-01-05 15:33:17 +00:00
|
|
|
/**
|
|
|
|
* \file config-suite-b.h
|
2015-08-06 08:59:26 +00:00
|
|
|
*
|
2018-01-05 15:33:17 +00:00
|
|
|
* \brief Minimal configuration for TLS NSA Suite B Profile (RFC 6460)
|
|
|
|
*/
|
|
|
|
/*
|
2020-08-07 11:07:28 +00:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2023-11-02 19:47:20 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
2015-08-06 08:59:26 +00:00
|
|
|
*/
|
2013-09-20 13:11:44 +00:00
|
|
|
/*
|
|
|
|
* Minimal configuration for TLS NSA Suite B Profile (RFC 6460)
|
|
|
|
*
|
2014-06-24 15:30:05 +00:00
|
|
|
* Distinguishing features:
|
|
|
|
* - no RSA or classic DH, fully based on ECC
|
|
|
|
* - optimized for low RAM usage
|
|
|
|
*
|
|
|
|
* Possible improvements:
|
|
|
|
* - if 128-bit security is enough, disable secp384r1 and SHA-512
|
|
|
|
* - use embedded certs in DER format and disable PEM_PARSE_C and BASE64_C
|
|
|
|
*
|
2014-04-30 09:53:50 +00:00
|
|
|
* See README.txt for usage instructions.
|
2013-09-20 13:11:44 +00:00
|
|
|
*/
|
|
|
|
|
2023-08-03 15:45:20 +00:00
|
|
|
/* Mbed TLS feature support */
|
2015-04-08 10:49:31 +00:00
|
|
|
#define MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
|
|
|
|
#define MBEDTLS_SSL_PROTO_TLS1_2
|
2013-09-20 13:11:44 +00:00
|
|
|
|
2023-08-03 15:45:20 +00:00
|
|
|
/* Mbed TLS modules */
|
2015-04-08 10:49:31 +00:00
|
|
|
#define MBEDTLS_NET_C
|
|
|
|
#define MBEDTLS_SSL_CLI_C
|
|
|
|
#define MBEDTLS_SSL_SRV_C
|
|
|
|
#define MBEDTLS_SSL_TLS_C
|
|
|
|
#define MBEDTLS_X509_CRT_PARSE_C
|
|
|
|
#define MBEDTLS_X509_USE_C
|
2013-09-20 13:11:44 +00:00
|
|
|
|
2014-06-30 17:22:44 +00:00
|
|
|
/* Save ROM and a few bytes of RAM by specifying our own ciphersuite list */
|
2015-04-08 10:49:31 +00:00
|
|
|
#define MBEDTLS_SSL_CIPHERSUITES \
|
|
|
|
MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, \
|
|
|
|
MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
|
2014-06-30 17:22:44 +00:00
|
|
|
|
2014-06-24 15:30:05 +00:00
|
|
|
/*
|
|
|
|
* Save RAM at the expense of interoperability: do this only if you control
|
2021-12-21 05:14:10 +00:00
|
|
|
* both ends of the connection! (See comments in "mbedtls/ssl.h".)
|
2014-06-24 15:30:05 +00:00
|
|
|
* The minimum size here depends on the certificate chain used as well as the
|
|
|
|
* typical size of records.
|
|
|
|
*/
|
2021-05-04 17:36:56 +00:00
|
|
|
#define MBEDTLS_SSL_IN_CONTENT_LEN 1024
|
|
|
|
#define MBEDTLS_SSL_OUT_CONTENT_LEN 1024
|
2022-01-17 14:32:02 +00:00
|
|
|
|
2022-02-25 20:00:16 +00:00
|
|
|
/* Error messages and TLS debugging traces
|
|
|
|
* (huge code size increase, needed for tests/ssl-opt.sh) */
|
|
|
|
//#define MBEDTLS_DEBUG_C
|
|
|
|
//#define MBEDTLS_ERROR_C
|