1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-28 00:21:48 +03:00

Adapt core OID functions to embeded null bytes

This commit is contained in:
Manuel Pégourié-Gonnard
2013-08-15 14:22:17 +02:00
committed by Paul Bakker
parent c13c0d4524
commit 298aae4524
2 changed files with 69 additions and 63 deletions

View File

@ -315,6 +315,7 @@ extern "C" {
*/
typedef struct {
const char *asn1; /*!< OID ASN.1 representation */
size_t asn1_len; /*!< length of asn1 */
const char *name; /*!< official name (e.g. from RFC) */
const char *description; /*!< human friendly description */
} oid_descriptor_t;