aboutsummaryrefslogtreecommitdiff
path: root/crypto/asn1/asn1_locl.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2015-09-22 16:20:09 +0100
committerDr. Stephen Henson <steve@openssl.org>2015-09-22 16:35:55 +0100
commit1e898fb0f58c9b6cee13917a8453809b1009fec2 (patch)
treec0628c5cc1d16860d3dfc22f271459bd693c78eb /crypto/asn1/asn1_locl.h
parent0d0099ea3b1825fe51bce11e076292e408b55feb (diff)
downloadopenssl-1e898fb0f58c9b6cee13917a8453809b1009fec2.zip
openssl-1e898fb0f58c9b6cee13917a8453809b1009fec2.tar.gz
openssl-1e898fb0f58c9b6cee13917a8453809b1009fec2.tar.bz2
Move certificate request and CRL routines to x509 dir.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/asn1/asn1_locl.h')
-rw-r--r--crypto/asn1/asn1_locl.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/crypto/asn1/asn1_locl.h b/crypto/asn1/asn1_locl.h
index bc3c1cf..d076fa0 100644
--- a/crypto/asn1/asn1_locl.h
+++ b/crypto/asn1/asn1_locl.h
@@ -90,24 +90,6 @@ struct asn1_sctx_st {
/* Month values for printing out times */
extern const char *_asn1_mon[12];
-/*
- * Method to handle CRL access. In general a CRL could be very large (several
- * Mb) and can consume large amounts of resources if stored in memory by
- * multiple processes. This method allows general CRL operations to be
- * redirected to more efficient callbacks: for example a CRL entry database.
- */
-
-#define X509_CRL_METHOD_DYNAMIC 1
-
-struct x509_crl_method_st {
- int flags;
- int (*crl_init) (X509_CRL *crl);
- int (*crl_free) (X509_CRL *crl);
- int (*crl_lookup) (X509_CRL *crl, X509_REVOKED **ret,
- ASN1_INTEGER *ser, X509_NAME *issuer);
- int (*crl_verify) (X509_CRL *crl, EVP_PKEY *pk);
-};
-
int asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it);
int asn1_set_choice_selector(ASN1_VALUE **pval, int value,
const ASN1_ITEM *it);