diff options
author | Rob Austein <sra@hactrn.net> | 2006-07-25 20:56:40 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2006-07-25 20:56:40 +0000 |
commit | 41100245de46c53e93c52f4e01c1a38a1d50a8dd (patch) | |
tree | c5626e5aa20854526c9cd7d051c8785b79117d94 /openssl | |
parent | daf941ce05ad72abfe164639cc402271e794cc9c (diff) |
Add RFC 3779 extensions. Boy, figuring out the NID order is a pain,
one has to backtrack two levels. With all the other whacky perl code
I'm surprised nobody has automated this yet.
svn path=/openssl/trunk/crypto/x509v3/ext_dat.h; revision=68
Diffstat (limited to 'openssl')
-rw-r--r-- | openssl/trunk/crypto/x509v3/ext_dat.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/openssl/trunk/crypto/x509v3/ext_dat.h b/openssl/trunk/crypto/x509v3/ext_dat.h index 35966846..3cf3d3e6 100644 --- a/openssl/trunk/crypto/x509v3/ext_dat.h +++ b/openssl/trunk/crypto/x509v3/ext_dat.h @@ -67,6 +67,7 @@ extern X509V3_EXT_METHOD v3_ocsp_crlid, v3_ocsp_nocheck, v3_ocsp_serviceloc; extern X509V3_EXT_METHOD v3_crl_hold, v3_pci; extern X509V3_EXT_METHOD v3_policy_mappings, v3_policy_constraints; extern X509V3_EXT_METHOD v3_name_constraints, v3_inhibit_anyp; +extern X509V3_EXT_METHOD v3_addr, v3_asid; /* This table will be searched using OBJ_bsearch so it *must* kept in * order of the ext_nid values. @@ -99,6 +100,8 @@ static X509V3_EXT_METHOD *standard_exts[] = { #endif &v3_sxnet, &v3_info, +&v3_addr, +&v3_asid, #ifndef OPENSSL_NO_OCSP &v3_ocsp_nonce, &v3_ocsp_crlid, |