Add verify callback functions to lookup a STACK of matching certs or CRLs
[openssl.git] / crypto / x509v3 / x509v3.h
index 1e2f00ab24fc906d1b397fbb6ce14a895408af6d..da349e51f54b860aed75e263aaa276cfd8a59a28 100644 (file)
@@ -339,6 +339,22 @@ struct ISSUING_DIST_POINT_st
        int onlyattr;
        };
 
+/* Values in idp_flags field */
+/* IDP present */
+#define        IDP_PRESENT     0x1
+/* IDP values inconsistent */
+#define IDP_INVALID    0x2
+/* onlyuser true */
+#define        IDP_ONLYUSER    0x4
+/* onlyCA true */
+#define        IDP_ONLYCA      0x8
+/* onlyattr true */
+#define IDP_ONLYATTR   0x10
+/* indirectCRL true */
+#define IDP_INDIRECT   0x20
+/* onlysomereasons present */
+#define IDP_REASONS    0x40
+
 #define X509V3_conf_err(val) ERR_add_error_data(6, "section:", val->section, \
 ",name:", val->name, ",value:", val->value);