diff options
| author | steve <steve> | 1999-11-23 18:50:15 +0000 |
|---|---|---|
| committer | steve <steve> | 1999-11-23 18:50:15 +0000 |
| commit | bc30209f09dce824ae8dce2d87dda329aa46dad6 (patch) | |
| tree | 0876e68a3fca9cd81af2a8eb9f6b11b6efdf849c /crypto/objects/objects.h | |
| parent | 28c9b86d611182125d29fb2d96459a4fb3995b1a (diff) | |
| download | openssl-bc30209f09dce824ae8dce2d87dda329aa46dad6.tar.gz | |
Support for authority information access extension.
Fix so EVP_PKEY_rset_*() check return codes.
Diffstat (limited to 'crypto/objects/objects.h')
| -rw-r--r-- | crypto/objects/objects.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/crypto/objects/objects.h b/crypto/objects/objects.h index bbbef901e..d7d1c533a 100644 --- a/crypto/objects/objects.h +++ b/crypto/objects/objects.h @@ -912,6 +912,29 @@ extern "C" { #define NID_dnQualifier 174 #define OBJ_dnQualifier OBJ_X509,46L +#define SN_id_pe "id-pe" +#define NID_id_pe 175 +#define OBJ_id_pe OBJ_id_pkix,1L + +#define SN_id_ad "id-ad" +#define NID_id_ad 176 +#define OBJ_id_ad OBJ_id_pkix,48L + +#define SN_info_access "authorityInfoAccess" +#define LN_info_access "Authority Information Access" +#define NID_info_access 177 +#define OBJ_info_access OBJ_id_pe,1L + +#define SN_ad_OCSP "OCSP" +#define LN_ad_OCSP "OCSP" +#define NID_ad_OCSP 178 +#define OBJ_ad_OCSP OBJ_id_ad,1L + +#define SN_ad_ca_issuers "caIssuers" +#define LN_ad_ca_issuers "CA Issuers" +#define NID_ad_ca_issuers 179 +#define OBJ_ad_ca_issuers OBJ_id_ad,2L + #include <openssl/bio.h> #include <openssl/asn1.h> |
