Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which TLS version does Netty support? TLS 1.0, 1.1 or 1.2?

Tags:

netty

Which TLS version does Netty support? TLS 1.0, 1.1 or 1.2? I looked at http://netty.io/5.0/xref/io/netty/handler/ssl/SslHandler.html but it doesn't say which version exactly.

like image 986
Akhil Avatar asked Nov 23 '25 01:11

Akhil


1 Answers

Netty uses Java SSL engine internally as follows inside it's handler chain.

pipeline.addLast("ssl", new SslHandler(sslEngine));

So the TLS version it supports depends on the JDK version you use. For an example if you sre using JDK 1.6, it supports TLSv1 where as JDK 1.7 supports, TLSv1,TLSv1.1,TLSv1.2.

Regards, Ravindra.

like image 73
Ravindra Ranwala Avatar answered Nov 28 '25 16:11

Ravindra Ranwala



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!