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:
- Use a new library that supports both TLS 1.3 and OSCP.
- Modify the ssl library to add OCSP support.
Please let me know what you think. Thank you.