mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 09:28:24 +00:00
33 lines
721 B
C
33 lines
721 B
C
|
/*
|
||
|
* Minimal configuration for TLS 1.2 with PSK and AES-CCM ciphersuites
|
||
|
*
|
||
|
* See README.txt for usage instructions.
|
||
|
*/
|
||
|
#ifndef POLARSSL_CONFIG_H
|
||
|
#define POLARSSL_CONFIG_H
|
||
|
|
||
|
/* System support */
|
||
|
#define POLARSSL_HAVE_IPV6
|
||
|
#define POLARSSL_HAVE_TIME
|
||
|
|
||
|
/* PolarSSL feature support */
|
||
|
#define POLARSSL_KEY_EXCHANGE_PSK_ENABLED
|
||
|
#define POLARSSL_SSL_PROTO_TLS1_2
|
||
|
|
||
|
/* PolarSSL modules */
|
||
|
#define POLARSSL_AES_C
|
||
|
#define POLARSSL_CCM_C
|
||
|
#define POLARSSL_CIPHER_C
|
||
|
#define POLARSSL_CTR_DRBG_C
|
||
|
#define POLARSSL_ENTROPY_C
|
||
|
#define POLARSSL_MD_C
|
||
|
#define POLARSSL_NET_C
|
||
|
#define POLARSSL_SHA256_C
|
||
|
#define POLARSSL_SSL_CLI_C
|
||
|
#define POLARSSL_SSL_SRV_C
|
||
|
#define POLARSSL_SSL_TLS_C
|
||
|
|
||
|
#include "check_config.h"
|
||
|
|
||
|
#endif /* POLARSSL_CONFIG_H */
|