Python Forum

Full Version: Python HTTPs client code with mutual SSL authentication
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am trying to write a python code for an HTTPs client to connect to an HTTPS server.

The code will do the following:
1. Connect to an HTTPS server
2. Bind Client certificate and Private key in HTTPS client channel for mutual authentication(2-way SSL).
3. Post data to HTTPs server.

But the problem is how to bind a client private key with the password to a Python HTTPs client code.
Which Python library supports that.

Any help will be really appreciated.

Thanks in Advance.