diff options
author | Rob Austein <sra@hactrn.net> | 2006-08-26 08:37:55 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2006-08-26 08:37:55 +0000 |
commit | 99b382d77e50198e59869fbb9c3cb52f0bf79ff5 (patch) | |
tree | dd1d790ddf822964536ec2beca3880bfdf309fdc /openssl/trunk/crypto/x509v3/x509v3.h | |
parent | f67ed9d59a451e0bb83396faed230a161a8f2b0f (diff) |
Allow inheritance in "resource sets" since verification of certificate
requests will almost certainly require this.
svn path=/openssl/trunk/crypto/x509v3/v3_addr.c; revision=232
Diffstat (limited to 'openssl/trunk/crypto/x509v3/x509v3.h')
-rw-r--r-- | openssl/trunk/crypto/x509v3/x509v3.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/openssl/trunk/crypto/x509v3/x509v3.h b/openssl/trunk/crypto/x509v3/x509v3.h index 4bcdd1dd..ea5d3f6e 100644 --- a/openssl/trunk/crypto/x509v3/x509v3.h +++ b/openssl/trunk/crypto/x509v3/x509v3.h @@ -739,10 +739,12 @@ int v3_addr_canonize(IPAddrBlocks *addr); int v3_asid_validate_path(X509_STORE_CTX *); int v3_addr_validate_path(X509_STORE_CTX *); int v3_asid_validate_resource_set(STACK_OF(X509) *chain, - ASIdentifiers *resource_set); + ASIdentifiers *ext, + int allow_inheritance); int v3_addr_validate_resource_set(STACK_OF(X509) *chain, - IPAddrBlocks *resource_set); - + IPAddrBlocks *ext, + int allow_inheritance); + /* * [sra] End RFC 3779 stuff */ |