User Tools

Site Tools


computing:java_security

This is an old revision of the document!


Java Security Tweaks

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.

  • Supermicro IPMI KVM

Here, we edit $JAVA_HOME/jre/lib/security/java.security to reduce the requirement to 512.

Change 1024 to 512, 256 or 128 as necessary:

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

to

jdk.certpath.disabledAlgorithms=MD2, RSA keySize < 512
computing/java_security.1467906568.txt.gz · Last modified: 2016/07/07 09:49 by gcooper