36 #define MBEDTLS_ERR_PEM_NO_HEADER_FOOTER_PRESENT -0x1080
37 #define MBEDTLS_ERR_PEM_INVALID_DATA -0x1100
38 #define MBEDTLS_ERR_PEM_ALLOC_FAILED -0x1180
39 #define MBEDTLS_ERR_PEM_INVALID_ENC_IV -0x1200
40 #define MBEDTLS_ERR_PEM_UNKNOWN_ENC_ALG -0x1280
41 #define MBEDTLS_ERR_PEM_PASSWORD_REQUIRED -0x1300
42 #define MBEDTLS_ERR_PEM_PASSWORD_MISMATCH -0x1380
43 #define MBEDTLS_ERR_PEM_FEATURE_UNAVAILABLE -0x1400
44 #define MBEDTLS_ERR_PEM_BAD_INPUT_DATA -0x1480
51 #if defined(MBEDTLS_PEM_PARSE_C)
68 void mbedtls_pem_init( mbedtls_pem_context *ctx );
92 int mbedtls_pem_read_buffer( mbedtls_pem_context *ctx,
const char *header,
const char *footer,
93 const unsigned char *data,
94 const unsigned char *pwd,
95 size_t pwdlen,
size_t *use_len );
102 void mbedtls_pem_free( mbedtls_pem_context *ctx );
105 #if defined(MBEDTLS_PEM_WRITE_C)
122 int mbedtls_pem_write_buffer(
const char *header,
const char *footer,
123 const unsigned char *der_data,
size_t der_len,
124 unsigned char *buf,
size_t buf_len,
size_t *olen );