diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2004-03-23 15:14:35 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2004-03-23 15:14:35 +0100 |
commit | 4acc3e907d29d8d61ae7e11ad7985a986332a1c1 (patch) | |
tree | 97b0e178ea69ae6786e979d62cc480180c7431af /crypto/ossl_typ.h | |
parent | Correct minor spelling error. (diff) | |
download | openssl-4acc3e907d29d8d61ae7e11ad7985a986332a1c1.tar.xz openssl-4acc3e907d29d8d61ae7e11ad7985a986332a1c1.zip |
Initial support for certificate policy checking and evaluation.
This is currently *very* experimental and needs to be more fully integrated
with the main verification code.
Diffstat (limited to 'crypto/ossl_typ.h')
-rw-r--r-- | crypto/ossl_typ.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/crypto/ossl_typ.h b/crypto/ossl_typ.h index 46200a80b1..2977b10827 100644 --- a/crypto/ossl_typ.h +++ b/crypto/ossl_typ.h @@ -119,6 +119,11 @@ typedef struct conf_st CONF; typedef struct engine_st ENGINE; +typedef struct X509_POLICY_NODE_st X509_POLICY_NODE; +typedef struct X509_POLICY_LEVEL_st X509_POLICY_LEVEL; +typedef struct X509_POLICY_TREE_st X509_POLICY_TREE; +typedef struct X509_POLICY_CACHE_st X509_POLICY_CACHE; + /* If placed in pkcs12.h, we end up with a circular depency with pkcs7.h */ #define DECLARE_PKCS12_STACK_OF(type) /* Nothing */ #define IMPLEMENT_PKCS12_STACK_OF(type) /* Nothing */ |