-
-
Notifications
You must be signed in to change notification settings - Fork 54
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
TLS/SSL support #46
Comments
The library includes bridges between pipelines and arbitrary streams, so my recommendation would be : just wrap
|
Yes, this makes sense, but isn't this wrapping a standard thing that will work for anyone? |
TLS config is so complex that frankly I don't see the advantage of trying to describe it as an API: it would be re-exposing every conceivable option that already exists on SslStream. Plus: it probably makes sense to go Socket=>NetworkStream=>SslStream=>(bridge), so pipelines isn't really involved until after you have done that. There might be some potential as an ASP.NET config style, perhaps? But... Tell you what: can you tell me what you think this API would look like to be useful, so we can picture it? |
First, I want it to be transparent, just like in SE.Redis example, where we get |
I think that is fine if you only ever want an SslStream shim, but I would say that way lies madness to just grab their API it's a mess of legacy and crazy. |
Ok, let the parameter be called |
Hi! Can we expect SSL/TLS support? I've googled this SO question, and looks like the proposed workaround can be generic and included in this library.
The text was updated successfully, but these errors were encountered: