How do I disable ssl v3 support in apache mina SslFilter? https://mina.apache.org/
Asked
Active
Viewed 176 times
1 Answers
2
You can simply specify only the protocols supported (in this case, all protocols from the TLS
family. Code:
final SslFilter sslFilter = new SslFilter(sslContext);
sslFilter.setEnabledProtocols(new String[] {"TLSv1"});
acceptor.getFilterChain().addLast("ssl", sslFilter);

CelinHC
- 1,857
- 2
- 27
- 36

rscarvalho
- 552
- 3
- 6