Python TLS implementation with OCSP stapling

156 Views Asked by At

I was using ssl library for a project. But now when I want to implement OCSP stapling during the TLS (1.3) handshake, I found that there is no OCSP support in that library. What can be a good workaround? I would like to keep using the ssl library as I have already developed a significant amount of code and changing to a new library will be a tough job.

I think I have two options:

  1. Use a new library that supports both TLS 1.3 and OSCP.
  2. Modify the ssl library to add OCSP support.

Please let me know what you think. Thank you.

0

There are 0 best solutions below