1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-12-24 17:41:01 +03:00

- Parsing of PEM files moved to separate module (Fixes ticket #13). Also possible to remove PEM support for systems only using DER encoding

- Parsing PEM private keys encrypted with DES and AES are now supported (Fixes ticket #5)
 - Added tests for encrypted keyfiles
This commit is contained in:
Paul Bakker
2011-02-12 14:30:57 +00:00
parent f17ed288ad
commit 96743fc5f5
15 changed files with 812 additions and 352 deletions

View File

@@ -151,6 +151,7 @@
*
* Module: library/aes.c
* Caller: library/ssl_tls.c
* library/pem.c
*
* This module enables the following ciphersuites:
* SSL_RSA_AES_128_SHA
@@ -370,6 +371,18 @@
*/
#define POLARSSL_PADLOCK_C
/**
* \def POLARSSL_PEM_C
*
* Enable PEM decoding
*
* Module: library/pem.c
* Caller: library/x509parse.c
*
* This modules adds support for decoding PEM files.
*/
#define POLARSSL_PEM_C
/**
* \def POLARSSL_RSA_C
*