This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
computing:java_security [2016/07/07 09:41] gcooper created |
computing:java_security [2017/07/11 09:35] (current) gcooper |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Java Security Tweaks ====== | ====== Java Security Tweaks ====== | ||
+ | |||
+ | <note tip>If you are trying to use Java in a web browser, **use Internet Explorer as your browser as Firefox no longer supports the Java plugin** for security reasons.</ | ||
+ | |||
+ | <note warning> | ||
+ | |||
+ | ===== Algorithm constraints check failed: MD5withRSA ===== | ||
Newer versions of Java require an SSL key length of at least 1024, however older apps may not provide that long of a key. | Newer versions of Java require an SSL key length of at least 1024, however older apps may not provide that long of a key. | ||
Line 7: | Line 13: | ||
Here, we edit '' | Here, we edit '' | ||
- | Change '' | + | Change '' |
< | < | ||
jdk.certpath.disabledAlgorithms=MD2, | jdk.certpath.disabledAlgorithms=MD2, | ||
+ | |||
+ | jdk.tls.disabledAlgorithms=SSLv3, | ||
</ | </ | ||
Line 17: | Line 25: | ||
< | < | ||
jdk.certpath.disabledAlgorithms=MD2, | jdk.certpath.disabledAlgorithms=MD2, | ||
+ | |||
+ | jdk.tls.disabledAlgorithms=SSLv3, | ||
</ | </ | ||