commit | 298aae4524190513dcddd36f49d009be9d4c1d8d | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Thu Aug 15 14:22:17 2013 +0200 |
committer | Paul Bakker <p.j.bakker@polarssl.org> | Fri Aug 16 14:00:52 2013 +0200 |
tree | 7de704066004118f18af1111872ef58628984035 | |
parent | c13c0d4524dedde047bc089a139b686ea85bc822 [diff] [blame] |
Adapt core OID functions to embeded null bytes
diff --git a/include/polarssl/oid.h b/include/polarssl/oid.h index 0c3dab2..ebb5bad 100644 --- a/include/polarssl/oid.h +++ b/include/polarssl/oid.h
@@ -315,6 +315,7 @@ */ 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;