summaryrefslogtreecommitdiffstats
path: root/crypto/include/internal/asn1_int.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2015-03-16 17:43:17 +0000
committerDr. Stephen Henson <steve@openssl.org>2015-03-25 14:15:00 +0000
commit2743e38c2f4bcb00142d8c65e48a66f547033a64 (patch)
tree640e29c0dbfd9abb5fd4dd0d993127a162965922 /crypto/include/internal/asn1_int.h
parent70e5fd877890489a3972bf8bf50bfec1fca3875e (diff)
make X509_NAME opaque
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/include/internal/asn1_int.h')
-rw-r--r--crypto/include/internal/asn1_int.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/crypto/include/internal/asn1_int.h b/crypto/include/internal/asn1_int.h
index 20c8f40511..9e74f47d25 100644
--- a/crypto/include/internal/asn1_int.h
+++ b/crypto/include/internal/asn1_int.h
@@ -119,3 +119,13 @@ struct asn1_object_st {
const unsigned char *data; /* data remains const after init */
int flags; /* Should we free this one */
};
+
+/* ASN1 print context structure */
+
+struct asn1_pctx_st {
+ unsigned long flags;
+ unsigned long nm_flags;
+ unsigned long cert_flags;
+ unsigned long oid_flags;
+ unsigned long str_flags;
+} /* ASN1_PCTX */ ;