Fix TLS issue to load certification and key 29/12829/2
authorPing Yu <ping.yu@intel.com>
Thu, 31 May 2018 18:01:04 +0000 (14:01 -0400)
committerFlorin Coras <florin.coras@gmail.com>
Thu, 31 May 2018 18:44:17 +0000 (18:44 +0000)
Change-Id: If1ef2d4bc6f90a4d4b6a345c63723117834c6504
Signed-off-by: Ping Yu <ping.yu@intel.com>
src/plugins/tlsopenssl/tls_openssl.c

index 0817f60..596dba9 100644 (file)
@@ -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);