From: Ping Yu Date: Thu, 31 May 2018 18:01:04 +0000 (-0400) Subject: Fix TLS issue to load certification and key X-Git-Tag: v18.07-rc1~243 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F29%2F12829%2F2;p=vpp.git Fix TLS issue to load certification and key Change-Id: If1ef2d4bc6f90a4d4b6a345c63723117834c6504 Signed-off-by: Ping Yu --- diff --git a/src/plugins/tlsopenssl/tls_openssl.c b/src/plugins/tlsopenssl/tls_openssl.c index 0817f606ad8..596dba9977f 100644 --- a/src/plugins/tlsopenssl/tls_openssl.c +++ b/src/plugins/tlsopenssl/tls_openssl.c @@ -519,6 +519,7 @@ openssl_ctx_init_server (tls_ctx_t * ctx) clib_warning ("unable to parse certificate"); return -1; } + SSL_CTX_use_certificate (oc->ssl_ctx, oc->srvcert); BIO_free (cert_bio); cert_bio = BIO_new (BIO_s_mem ()); BIO_write (cert_bio, app->tls_key, vec_len (app->tls_key)); @@ -529,6 +530,7 @@ openssl_ctx_init_server (tls_ctx_t * ctx) return -1; } + SSL_CTX_use_PrivateKey (oc->ssl_ctx, oc->pkey); BIO_free (cert_bio); oc->ssl = SSL_new (oc->ssl_ctx);