Topic: SSL_VERIFY_CLIENT_ONCE in C# wrapper

I'm working on a client/server that verified each other, hoping that server can remember the client's certificate to boost the connection speed, and as I know, it can be done with adding SSL_VERIFY_CLIENT_ONCE into CTX_set_verify(), but the server doesn't change anything when I do so. Is this added into C# wrapper? or it is just I misunderstood something.

Share

Re: SSL_VERIFY_CLIENT_ONCE in C# wrapper

Hello a940153,

The `SSL_VERIFY_CLIENT_ONCE` flag is regarded as unsafe and is ignored in wolfSSL. You can use session tickets to securely reconnect a peer.

Re: SSL_VERIFY_CLIENT_ONCE in C# wrapper

Thanks. I'll try it out.

Share