- 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

@ -378,6 +378,8 @@ void error_strerror( int ret, char *buf, size_t buflen )
snprintf( buf, buflen, "ASN1 - Data is invalid. (not used)" );
if( use_ret == -(POLARSSL_ERR_ASN1_MALLOC_FAILED) )
snprintf( buf, buflen, "ASN1 - Memory allocation failed" );
if( use_ret == -(POLARSSL_ERR_ASN1_BUF_TOO_SMALL) )
snprintf( buf, buflen, "ASN1 - Buffer too small when writing ASN.1 data structure" );
#endif /* POLARSSL_ASN1_PARSE_C */
#if defined(POLARSSL_BASE64_C)