Re: Verify callback and sending of the client certificate

2013-08-10 Thread Dr. Stephen Henson
On Fri, Aug 09, 2013, Florian Weimer wrote: > Qt installs a verification callback like this > > |// Register a custom callback to get all verification errors. > |X509_STORE_set_verify_cb_func(ctx->cert_store, q_X509Callback); > > ctx is an SSL_CTX *. This callback is invoked not just to

Re: Verify callback and sending of the client certificate

2013-08-09 Thread Florian Weimer
On 08/09/2013 01:18 PM, Peter Sylvester wrote: On 08/09/2013 11:17 AM, Florian Weimer wrote: Qt installs a verification callback like this |// Register a custom callback to get all verification errors. |X509_STORE_set_verify_cb_func(ctx->cert_store, q_X509Callback); It is not recommend

Re: Verify callback and sending of the client certificate

2013-08-09 Thread Peter Sylvester
On 08/09/2013 11:17 AM, Florian Weimer wrote: Qt installs a verification callback like this |// Register a custom callback to get all verification errors. |X509_STORE_set_verify_cb_func(ctx->cert_store, q_X509Callback); It is not recommended to access to members in the way above, but ra

Verify callback and sending of the client certificate

2013-08-09 Thread Florian Weimer
Qt installs a verification callback like this |// Register a custom callback to get all verification errors. |X509_STORE_set_verify_cb_func(ctx->cert_store, q_X509Callback); ctx is an SSL_CTX *. This callback is invoked not just to verify the server certificate, but also when OpenSSL t