- 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:
parent
048d04ef4b
commit
bdb912db69
16 changed files with 1245 additions and 12 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue