Skip to content
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

Expose SslStream configuration options used in TlsHandler #60

Closed
whizlingo opened this issue Dec 17, 2015 · 2 comments
Closed

Expose SslStream configuration options used in TlsHandler #60

whizlingo opened this issue Dec 17, 2015 · 2 comments
Milestone

Comments

@whizlingo
Copy link

i am trying to host dot netty Client and server. When i monitor the tls traffic going on wireshark , i see the protocol set to tls 1.0 is their a way i can configure to do ssl handshake on tls 1.2

@nayato
Copy link
Member

nayato commented Dec 19, 2015

Unfortunately there is no way right now. To do that we'd need to pass a set of supported protocols here: https://github.com/Azure/DotNetty/blob/dev/src/DotNetty.Handlers/Tls/TlsHandler.cs#L250
The way TLS support is integrated right now is less than ideal and we plan to change that soon providing easier customization by accepting object that embeds SslStream integration. That way users will be able to override the defaults by inheriting or replacing such an object.

@whizlingo
Copy link
Author

Thanks Max , that's exactly what I figured out yesterday, changed it to pass protocols similar to how we do for client and was able to see the desired results in wire shark. Thanks for your inputs.

Sent via Phone...

On 19-Dec-2015, at 2:57 PM, Max Gortman notifications@github.com wrote:

Unfortunately there is no way right now. To do that we'd need to pass a set of supported protocols here: https://github.com/Azure/DotNetty/blob/dev/src/DotNetty.Handlers/Tls/TlsHandler.cs#L250
The way TLS support is integrated right now is less than ideal and we plan to change that soon providing easier customization by accepting object that embeds SslStream integration. That way users will be able to override the defaults by inheriting or replacing such an object.


Reply to this email directly or view it on GitHub.

@nayato nayato changed the title Does .Netty support tls 1.2 between client and server ? Expose SslStream configuration options used in TlsHandler Dec 19, 2015
@nayato nayato added this to the 0.3.2 milestone Jun 15, 2016
@nayato nayato closed this as completed Jun 16, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants