How to enable SSL 3 in Java

前端 未结 4 816
清歌不尽
清歌不尽 2020-11-29 12:33

Since Java 8 Update 31 the SSL 3 protocol is disabled by default due to security flaws in the SSL Protocol (see POODLE attack).

Even if not recommended, how can it b

4条回答
  •  死守一世寂寞
    2020-11-29 12:34

    I found both of these edits were required in order to connect to a DRAC 5 card:

    Remove MD5:

    jdk.certpath.disabledAlgorithms=MD2, RSA keySize < 1024
    

    Remove SSLv3, RC4, and MD5withRSA:

    jdk.tls.disabledAlgorithms=DH keySize < 768
    

提交回复
热议问题