In mutual authentication/two way ssl over HTTPS, is the client certificate passed each time to the server with every call? -


Also, is every server certificate passed for every proof?

And is there any special link / book where I can read more about these things?

Thank you.

The entire certificate has been moved with a complete handshake. If the SSL session then closes an appropriate SSL before ending the built-in TCP connection and if the customer and server support this session then it can be restarted later. In this case only session tickets are exchanged and then the full certificate is not available.

There are so many resources in that you search for "SSL handshake", e.g.


Comments

Popular posts from this blog

sqlite3 - UPDATE a table from the SELECT of another one -

c# - Showing a SelectedItem's Property -

javascript - Render HTML after each iteration in loop -