Python Forum
Python HTTPs client code with mutual SSL authentication - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html)
+--- Thread: Python HTTPs client code with mutual SSL authentication (/thread-11855.html)



Python HTTPs client code with mutual SSL authentication - ashish0265 - Jul-28-2018

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.