Remove X509_ATTRIBUTE hack.
[openssl.git] / crypto / x509 / x509_lcl.h
index c7621fd1e614906ff182d2b96e10c1de0ef5dff8..427d8ca3db79953a85afd28b2081d07e0add253f 100644 (file)
@@ -70,3 +70,15 @@ struct X509_VERIFY_PARAM_ID_st {
 };
 
 int x509_check_cert_time(X509_STORE_CTX *ctx, X509 *x, int quiet);
+
+/* a sequence of these are used */
+struct x509_attributes_st {
+    ASN1_OBJECT *object;
+    STACK_OF(ASN1_TYPE) *set;
+};
+
+struct X509_extension_st {
+    ASN1_OBJECT *object;
+    ASN1_BOOLEAN critical;
+    ASN1_OCTET_STRING *value;
+};