mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-10-31 03:30:35 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Minimal configuration for TLS 1.1 (RFC 4346), implementing only the
 | |
|  * required ciphersuite: TLS_RSA_WITH_3DES_EDE_CBC_SHA
 | |
|  *
 | |
|  * Can be activated with:
 | |
|  *      cd scripts
 | |
|  *      ./activate-config.pl data_files/config-mini-tls1_1.h
 | |
|  */
 | |
| 
 | |
| /* PolarSSL feature support */
 | |
| #define POLARSSL_CIPHER_MODE_CBC
 | |
| #define POLARSSL_PKCS1_V15
 | |
| #define POLARSSL_KEY_EXCHANGE_RSA_ENABLED
 | |
| #define POLARSSL_SSL_PROTO_TLS1_1
 | |
| 
 | |
| /* PolarSSL modules */
 | |
| #define POLARSSL_AES_C
 | |
| #define POLARSSL_ASN1_PARSE_C
 | |
| #define POLARSSL_ASN1_WRITE_C
 | |
| #define POLARSSL_BIGNUM_C
 | |
| #define POLARSSL_CIPHER_C
 | |
| #define POLARSSL_CTR_DRBG_C
 | |
| #define POLARSSL_DES_C
 | |
| #define POLARSSL_ENTROPY_C
 | |
| #define POLARSSL_MD_C
 | |
| #define POLARSSL_MD5_C
 | |
| #define POLARSSL_NET_C
 | |
| #define POLARSSL_OID_C
 | |
| #define POLARSSL_PK_C
 | |
| #define POLARSSL_PK_PARSE_C
 | |
| #define POLARSSL_RSA_C
 | |
| #define POLARSSL_SHA1_C
 | |
| #define POLARSSL_SHA256_C
 | |
| #define POLARSSL_SSL_CLI_C
 | |
| #define POLARSSL_SSL_SRV_C
 | |
| #define POLARSSL_SSL_TLS_C
 | |
| #define POLARSSL_X509_CRT_PARSE_C
 | |
| #define POLARSSL_X509_USE_C
 | |
| 
 | |
| /* For test certificates */
 | |
| #define POLARSSL_BASE64_C
 | |
| #define POLARSSL_CERTS_C
 | |
| #define POLARSSL_PEM_PARSE_C
 | |
| 
 | |
| /* For testing with compat.sh */
 | |
| #define POLARSSL_FS_IO
 | |
| 
 | |
| /* marker for activate-config.pl
 | |
|  * \} name SECTION: PolarSSL modules */
 | 
