Commit 34e55007 authored by Juergen Kosel's avatar Juergen Kosel

In test5 - 2d the client must not have the valid client certificate!

Signed-off-by: 's avatarJuergen Kosel <juergen.kosel@softing.com>
parent 55f93997
...@@ -1048,7 +1048,7 @@ int test2d(struct Options options) ...@@ -1048,7 +1048,7 @@ int test2d(struct Options options)
opts.ssl = &sslopts; opts.ssl = &sslopts;
if (options.server_key_file != NULL) opts.ssl->trustStore = options.server_key_file; /*file of certificates trusted by client*/ if (options.server_key_file != NULL) opts.ssl->trustStore = options.server_key_file; /*file of certificates trusted by client*/
opts.ssl->keyStore = options.client_key_file; /*file of certificate for client to present to server*/ opts.ssl->keyStore = NULL; /*file of certificate for client to present to server - In this test the client has no certificate! */
//if (options.client_key_pass != NULL) //if (options.client_key_pass != NULL)
// opts.ssl->privateKeyPassword = options.client_key_pass; // opts.ssl->privateKeyPassword = options.client_key_pass;
//opts.ssl->enabledCipherSuites = "DEFAULT"; //opts.ssl->enabledCipherSuites = "DEFAULT";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment