diff options
author | Rob Austein <sra@hactrn.net> | 2006-08-16 01:09:27 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2006-08-16 01:09:27 +0000 |
commit | 19a1b0eab24ab520c0daff2f808153e6bbfcf4a6 (patch) | |
tree | 54afc11d3a4587910197437fc80a8a0889396068 /openssl/trunk/crypto/x509v3/v3_addr.c | |
parent | 44ff60bdd4686d90cfe86da3d88445a3a9cb6a97 (diff) |
Cache RFC 3779 extensions in X509 structure so we don't have to expand
them every time we check a certificate chain. Rewrite ASID path
validation to use cached extensions, to allow null inheritance, and to
start with the target certificate.
Still need to rewrite address path validation.
svn path=/openssl/README; revision=154
Diffstat (limited to 'openssl/trunk/crypto/x509v3/v3_addr.c')
-rw-r--r-- | openssl/trunk/crypto/x509v3/v3_addr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/openssl/trunk/crypto/x509v3/v3_addr.c b/openssl/trunk/crypto/x509v3/v3_addr.c index 707fdd5f..0355dda2 100644 --- a/openssl/trunk/crypto/x509v3/v3_addr.c +++ b/openssl/trunk/crypto/x509v3/v3_addr.c @@ -922,6 +922,8 @@ static int addr_contains(IPAddressOrRanges *parent, break; } } + + return 1; } /* |