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

- Added preliminary ASN.1 buffer writing support

- Added preliminary X509 Certificate Request writing support
 - Added key_app_writer example application
 - Added cert_req example application
This commit is contained in:
Paul Bakker
2012-02-13 23:11:30 +00:00
parent 048d04ef4b
commit bdb912db69
16 changed files with 1245 additions and 12 deletions

View File

@@ -288,6 +288,15 @@
*/
#define POLARSSL_ASN1_PARSE_C
/**
* \def POLARSSL_ASN1_WRITE_C
*
* Enable the generic ASN1 writer.
*
* Module: library/asn1write.c
*/
#define POLARSSL_ASN1_WRITE_C
/**
* \def POLARSSL_BASE64_C
*
@@ -697,6 +706,19 @@
*/
#define POLARSSL_X509_PARSE_C
/**
* \def POLARSSL_X509_WRITE_C
*
* Enable X.509 buffer writing.
*
* Module: library/x509write.c
*
* Requires: POLARSSL_BIGNUM_C, POLARSSL_RSA_C
*
* This module is required for X.509 certificate request writing.
*/
#define POLARSSL_X509_WRITE_C
/**
* \def POLARSSL_XTEA_C
*