diff options
author | tb <> | 2024-01-06 20:47:01 +0000 |
---|---|---|
committer | tb <> | 2024-01-06 20:47:01 +0000 |
commit | bf702ad7405cf38ecfa682f20ce867b97a100239 (patch) | |
tree | 7045679d52da039565ec376b559749e2b58ca656 | |
parent | 14dc9f0ac6e30d0b904958f23f45f9fd5f20300f (diff) | |
download | openbsd-bf702ad7405cf38ecfa682f20ce867b97a100239.tar.gz openbsd-bf702ad7405cf38ecfa682f20ce867b97a100239.tar.bz2 openbsd-bf702ad7405cf38ecfa682f20ce867b97a100239.zip |
Zap some more CRL method things
-rw-r--r-- | src/lib/libcrypto/asn1/asn1_local.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/lib/libcrypto/asn1/asn1_local.h b/src/lib/libcrypto/asn1/asn1_local.h index a8cc53221f..499e160275 100644 --- a/src/lib/libcrypto/asn1/asn1_local.h +++ b/src/lib/libcrypto/asn1/asn1_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: asn1_local.h,v 1.6 2024/01/06 17:37:23 tb Exp $ */ | 1 | /* $OpenBSD: asn1_local.h,v 1.7 2024/01/06 20:47:01 tb Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 2006. | 3 | * project 2006. |
4 | */ | 4 | */ |
@@ -89,15 +89,6 @@ struct asn1_pctx_st { | |||
89 | unsigned long str_flags; | 89 | unsigned long str_flags; |
90 | } /* ASN1_PCTX */; | 90 | } /* ASN1_PCTX */; |
91 | 91 | ||
92 | /* Method to handle CRL access. | ||
93 | * In general a CRL could be very large (several Mb) and can consume large | ||
94 | * amounts of resources if stored in memory by multiple processes. | ||
95 | * This method allows general CRL operations to be redirected to more | ||
96 | * efficient callbacks: for example a CRL entry database. | ||
97 | */ | ||
98 | |||
99 | #define X509_CRL_METHOD_DYNAMIC 1 | ||
100 | |||
101 | int asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it); | 92 | int asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it); |
102 | int asn1_set_choice_selector(ASN1_VALUE **pval, int value, const ASN1_ITEM *it); | 93 | int asn1_set_choice_selector(ASN1_VALUE **pval, int value, const ASN1_ITEM *it); |
103 | 94 | ||