mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 15:55:37 +01:00
Remove small configuration based on RC4
This commit is contained in:
parent
c4dfaccfa0
commit
0bf112e7dc
@ -1,40 +0,0 @@
|
||||
/*
|
||||
* Custom compact configuration for TLS 1.0 with PSK and RC4
|
||||
* Distinguishing features: no bignum, no PK, no X509.
|
||||
*
|
||||
* WARNING: RC4 is in the process of being deprecated!
|
||||
* This configuration is kept for testing purposes only, DO NOT USE it!
|
||||
* For a safe and lean PSK-based configuration, see config-ccm-psk-tls1_2.h
|
||||
*
|
||||
* See README.txt for usage instructions.
|
||||
*/
|
||||
#ifndef POLARSSL_CONFIG_H
|
||||
#define POLARSSL_CONFIG_H
|
||||
|
||||
/* System support */
|
||||
//#define POLARSSL_HAVE_IPV6 /* Optional */
|
||||
//#define POLARSSL_HAVE_TIME /* Optionnaly used in Hello messages */
|
||||
/* Other POLARSSL_HAVE_XXX flags irrelevant for this configuration */
|
||||
|
||||
/* mbed TLS feature support */
|
||||
#define POLARSSL_KEY_EXCHANGE_PSK_ENABLED
|
||||
#define POLARSSL_SSL_PROTO_TLS1
|
||||
|
||||
/* mbed TLS modules */
|
||||
#define POLARSSL_AES_C
|
||||
#define POLARSSL_ARC4_C
|
||||
#define POLARSSL_CIPHER_C
|
||||
#define POLARSSL_CTR_DRBG_C
|
||||
#define POLARSSL_ENTROPY_C
|
||||
#define POLARSSL_MD_C
|
||||
#define POLARSSL_MD5_C
|
||||
#define POLARSSL_NET_C
|
||||
#define POLARSSL_SHA1_C
|
||||
#define POLARSSL_SHA256_C
|
||||
#define POLARSSL_SSL_CLI_C
|
||||
#define POLARSSL_SSL_SRV_C
|
||||
#define POLARSSL_SSL_TLS_C
|
||||
|
||||
#include "mbedtls/check_config.h"
|
||||
|
||||
#endif /* POLARSSL_CONFIG_H */
|
@ -11,8 +11,6 @@ use warnings;
|
||||
use strict;
|
||||
|
||||
my %configs = (
|
||||
'config-psk-rc4-tls1_0.h'
|
||||
=> '-m tls1 -f \'^PSK.*RC4\|TLS-PSK.*RC4\'',
|
||||
'config-mini-tls1_1.h'
|
||||
=> '-m tls1_1 -f \'^DES-CBC3-SHA$\|^TLS-RSA-WITH-3DES-EDE-CBC-SHA$\'',
|
||||
'config-suite-b.h'
|
||||
|
Loading…
Reference in New Issue
Block a user