You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@jmeter.apache.org by bu...@apache.org on 2014/10/16 08:03:46 UTC

[Bug 56357] Certificates does not conform to algorithm constraints

https://issues.apache.org/bugzilla/show_bug.cgi?id=56357

Milamber <mi...@apache.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|INVALID                     |---

--- Comment #6 from Milamber <mi...@apache.org> ---

This bug is related to Java version.

Since Java 7 u16, the sign algo MD2 is disable.
http://www.oracle.com/technetwork/java/javase/6u17-141447.html

A simple workaround is to revert the disable.
Edit the JDK_HOME/jre/lib/security/java.security
And change 
jdk.certpath.disabledAlgorithms=MD2

(or jdk.certpath.disabledAlgorithms=MD2, RSA keySize < 1024
since Java 7 u40 & Java 8)

to
jdk.certpath.disabledAlgorithms=

(or jdk.certpath.disabledAlgorithms=RSA keySize < 1024
since Java 7 u40 & Java 8))


I re-open the issue to find the good way with JMeter to not use the MD2
signature algorithm.

-- 
You are receiving this mail because:
You are the assignee for the bug.