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_local.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crypto/cmp/cmp_local.h') diff --git a/crypto/cmp/cmp_local.h b/crypto/cmp/cmp_local.h index 220e93e2ce..3017d1910b 100644 --- a/crypto/cmp/cmp_local.h +++ b/crypto/cmp/cmp_local.h @@ -38,8 +38,8 @@ struct ossl_cmp_ctx_st { char *serverPath; char *serverName; int serverPort; - char *proxyName; - int proxyPort; + char *proxy; + char *no_proxy; int msg_timeout; /* max seconds to wait for each CMP message round trip */ int total_timeout; /* max number of seconds an enrollment may take, incl. */ /* attempts polling for a response if a 'waiting' PKIStatus is received */ -- cgit v1.2.3