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;