mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-12-24 17:41:01 +03:00
- Added support for NULL cipher (POLARSSL_CIPHER_NULL_CIPHER) and weak ciphersuites (POLARSSL_ENABLE_WEAK_CIPHERSUITES). They are disabled by default!
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
*
|
||||
* \brief SSL/TLS functions.
|
||||
*
|
||||
* Copyright (C) 2006-2010, Brainspark B.V.
|
||||
* Copyright (C) 2006-2012, Brainspark B.V.
|
||||
*
|
||||
* This file is part of PolarSSL (http://www.polarssl.org)
|
||||
* Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
|
||||
@@ -110,6 +110,12 @@
|
||||
/*
|
||||
* Supported ciphersuites
|
||||
*/
|
||||
#define SSL_RSA_NULL_MD5 0x01 /**< Weak! */
|
||||
#define SSL_RSA_NULL_SHA 0x02 /**< Weak! */
|
||||
#define SSL_RSA_NULL_SHA256 0x3B /**< Weak! */
|
||||
#define SSL_RSA_DES_SHA 0x09 /**< Weak! */
|
||||
#define SSL_EDH_RSA_DES_SHA 0x15 /**< Weak! */
|
||||
|
||||
#define SSL_RSA_RC4_128_MD5 0x04
|
||||
#define SSL_RSA_RC4_128_SHA 0x05
|
||||
#define SSL_RSA_DES_168_SHA 0x0A
|
||||
|
||||
Reference in New Issue
Block a user