From cb91e603bc82083fc762206edfe4530f993a6c36 Mon Sep 17 00:00:00 2001 From: Ping Yu Date: Thu, 31 May 2018 14:01:04 -0400 Subject: [PATCH] Fix TLS issue to load certification and key Change-Id: If1ef2d4bc6f90a4d4b6a345c63723117834c6504 Signed-off-by: Ping Yu --- src/plugins/tlsopenssl/tls_openssl.c | 2 ++ 1 file changed, 2 insertions(+) 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); -- 2.16.6