OCSP Verification #530
-
Is this library able to do OCSP verification and if not, are there any plans for implementation in the future? |
Beta Was this translation helpful? Give feedback.
Answered by
moorereason
Mar 28, 2022
Replies: 1 comment
-
No, resty does not provide that. I'm not aware of any plans to add it. However, you should be able to use a custom TLS Config with We may be able to incorporate that into resty later if we can agree to an API. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jeevatkm
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No, resty does not provide that. I'm not aware of any plans to add it.
However, you should be able to use a custom TLS Config with
client.SetTLSClientConfig
that implements OCSP verification. I've not done OCSP verification before, but this article seems to explain how to do it.We may be able to incorporate that into resty later if we can agree to an API.