mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-06-12 16:45:31 +00:00
Added comments to indicate dependency from PEM on AES, DES and MD5
This commit is contained in:
parent
fbb5cf9f59
commit
6deb37e03e
|
@ -335,6 +335,8 @@
|
||||||
* TLS_DHE_RSA_WITH_AES_256_CBC_SHA256
|
* TLS_DHE_RSA_WITH_AES_256_CBC_SHA256
|
||||||
* TLS_RSA_WITH_AES_128_GCM_SHA256
|
* TLS_RSA_WITH_AES_128_GCM_SHA256
|
||||||
* TLS_RSA_WITH_AES_256_GCM_SHA384
|
* TLS_RSA_WITH_AES_256_GCM_SHA384
|
||||||
|
*
|
||||||
|
* PEM uses AES for decrypting encrypted keys.
|
||||||
*/
|
*/
|
||||||
#define POLARSSL_AES_C
|
#define POLARSSL_AES_C
|
||||||
|
|
||||||
|
@ -486,12 +488,15 @@
|
||||||
* Enable the DES block cipher.
|
* Enable the DES block cipher.
|
||||||
*
|
*
|
||||||
* Module: library/des.c
|
* Module: library/des.c
|
||||||
* Caller: library/ssl_tls.c
|
* Caller: library/pem.c
|
||||||
|
* library/ssl_tls.c
|
||||||
*
|
*
|
||||||
* This module enables the following ciphersuites (if other requisites are
|
* This module enables the following ciphersuites (if other requisites are
|
||||||
* enabled as well):
|
* enabled as well):
|
||||||
* TLS_RSA_WITH_3DES_EDE_CBC_SHA
|
* TLS_RSA_WITH_3DES_EDE_CBC_SHA
|
||||||
* TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA
|
* TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA
|
||||||
|
*
|
||||||
|
* PEM uses DES/3DES for decrypting encrypted keys.
|
||||||
*/
|
*/
|
||||||
#define POLARSSL_DES_C
|
#define POLARSSL_DES_C
|
||||||
|
|
||||||
|
@ -621,10 +626,12 @@
|
||||||
* Enable the MD5 hash algorithm
|
* Enable the MD5 hash algorithm
|
||||||
*
|
*
|
||||||
* Module: library/md5.c
|
* Module: library/md5.c
|
||||||
* Caller: library/ssl_tls.c
|
* Caller: library/pem.c
|
||||||
|
* library/ssl_tls.c
|
||||||
* library/x509parse.c
|
* library/x509parse.c
|
||||||
*
|
*
|
||||||
* This module is required for SSL/TLS and X.509.
|
* This module is required for SSL/TLS and X.509.
|
||||||
|
* PEM uses MD5 for decrypting encrypted keys.
|
||||||
*/
|
*/
|
||||||
#define POLARSSL_MD5_C
|
#define POLARSSL_MD5_C
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue