From: Dr. Stephen Henson Date: Thu, 29 Nov 2012 01:15:09 +0000 (+0000) Subject: add wrapper function for certificate download X-Git-Tag: OpenSSL_1_0_2-beta1~459 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1c0964e87fe5f73872d661668aa93eacb52a9672;p=oweals%2Fopenssl.git add wrapper function for certificate download --- diff --git a/crypto/x509/x509.h b/crypto/x509/x509.h index 78c18666af..45b4f159e8 100644 --- a/crypto/x509/x509.h +++ b/crypto/x509/x509.h @@ -662,6 +662,7 @@ int X509_signature_print(BIO *bp,X509_ALGOR *alg, ASN1_STRING *sig); int X509_sign(X509 *x, EVP_PKEY *pkey, const EVP_MD *md); int X509_sign_ctx(X509 *x, EVP_MD_CTX *ctx); +int X509_http_nbio(OCSP_REQ_CTX *rctx, X509 **pcert); int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md); int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx); int X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const EVP_MD *md); diff --git a/crypto/x509/x_all.c b/crypto/x509/x_all.c index e62cd31394..bb64c34f50 100644 --- a/crypto/x509/x_all.c +++ b/crypto/x509/x_all.c @@ -103,6 +103,12 @@ int X509_sign_ctx(X509 *x, EVP_MD_CTX *ctx) x->sig_alg, x->signature, x->cert_info, ctx); } +int X509_http_nbio(OCSP_REQ_CTX *rctx, X509 **pcert) + { + return OCSP_REQ_CTX_nbio_d2i(rctx, + (ASN1_VALUE **)pcert, ASN1_ITEM_rptr(X509)); + } + int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md) { return(ASN1_item_sign(ASN1_ITEM_rptr(X509_REQ_INFO),x->sig_alg, NULL,