-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OCSP stapling support can be used to optimize TLS connections #33377
Comments
I couldn't add an area label to this Issue. Checkout this page to find out which area owner to ping, or please add exactly one area label to help train me in the future. |
@bartonjs this looks like something crypto layer should support first. Or do we need to do something special in SslStream? |
@karelz Both 😄 For Windows, it's entirely going to be SslStream. Presumably there's just a flag or option you set for SChannel and it does it. For Linux, things are more involved:
I'd be OK with doing the "so, give me OCSP data to staple" as internal to the Linux PAL for SslStream right now; and if there's time and demand we can make a public version of it. |
Would like to add that this would be a very welcome feature for us as well. https://ayende.com/blog/192261-B/the-failure-of-a-computer-you-didnt-even-know-existed? |
@jeffhandley Just curious, should this still be at priority 3 given that we have a partner ask for it? |
There's still a tweak and test for Windows, but Linux is done. |
Hello :)
Are there any plans to expand support for OCSP stapling? Using WireShark, I see that the
status_request
TLS extension is only set on MacOS on .Net Core >= 2.0 after settingcheckCertificateRevocation
to true when calling SslStream.AuthenticateAsClient. On Linux and Windows, there appears to be no stapling support, even though my loose understanding is that both OpenSSL and Secure Channel support stapling.The reason I'm asking for expanded OCSP stapling support is that we would like the MongoDB .NET/C# driver to have support for stapled OCSP on Linux and Windows (our goal is to have all MongoDB drivers fully support OCSP).
The text was updated successfully, but these errors were encountered: