From afe554c2d244b4e7fc8c1b14acef806a2a581a8d Mon Sep 17 00:00:00 2001 From: "Dr. David von Oheimb" Date: Wed, 19 Feb 2020 18:00:26 +0100 Subject: Chunk 10 of CMP contribution to OpenSSL: CMP http client and related tests Also improve the generic HTTP client w.r.t. proxy and no_proxy options. Certificate Management Protocol (CMP, RFC 4210) extension to OpenSSL Also includes CRMF (RFC 4211) and HTTP transfer (RFC 6712). Adds the CMP and CRMF API to libcrypto and the "cmp" app to the CLI. Adds extensive documentation and tests. Reviewed-by: Matt Caswell Reviewed-by: David von Oheimb (Merged from https://github.com/openssl/openssl/pull/11404) --- crypto/cmp/cmp_client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/cmp/cmp_client.c') diff --git a/crypto/cmp/cmp_client.c b/crypto/cmp/cmp_client.c index eedabc59d2..604b4ce9a1 100644 --- a/crypto/cmp/cmp_client.c +++ b/crypto/cmp/cmp_client.c @@ -140,7 +140,7 @@ static int send_receive_check(OSSL_CMP_CTX *ctx, const OSSL_CMP_MSG *req, OSSL_CMP_transfer_cb_t transfer_cb = ctx->transfer_cb; if (transfer_cb == NULL) - transfer_cb = NULL; /* TODO: will be OSSL_CMP_MSG_http_perform of chunk 10 */ + transfer_cb = OSSL_CMP_MSG_http_perform; *rep = NULL; msg_timeout = ctx->msg_timeout; /* backup original value */ -- cgit v1.2.3