Hi Colm,

If I ran below code with Oracle JDK, I can see SSLv2Hello, SSLv3 there.

SSLContext context = SSLContext.getInstance(“TSL”);
SSLEngine engine = context.createSSLEngine();
print engine.getEnabledProtocols() 

I guess we need to exclude the SSLv2Hello at the same time.

Regards,

--  
Willem Jiang

Red Hat, Inc.
Web: http://www.redhat.com
Blog: http://willemjiang.blogspot.com (English)
http://jnn.iteye.com (Chinese)
Twitter: willemjiang  
Weibo: 姜宁willem



On October 20, 2014 at 11:45:39 PM, [email protected] ([email protected]) 
wrote:

> > + if (!"SSLv3".equals(proto)) {
> + scf.addExcludeProtocols("SSLv3");
> + }

Reply via email to