Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
apache mina SslFilter で ssl v3 サポートを無効にするにはどうすればよいですか? https://mina.apache.org/
サポートされているプロトコルのみを指定するだけです (この場合は、TLSファミリのすべてのプロトコルです。コード:
TLS
final SslFilter sslFilter = new SslFilter(sslContext); sslFilter.setEnabledProtocols(new String[] {"TLSv1"}); acceptor.getFilterChain().addLast("ssl", sslFilter);