mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

pvarga88
13.02.2020 3749c431224948fed34dcb10461909f4f7638aa8
Backport of OPENDJ-2366 to avoid errors from testssl (#97)

1 files modified
4 ■■■■ changed files
opendj-server-legacy/src/main/java/org/opends/server/util/Platform.java 4 ●●●● patch | view | raw | blame | history
opendj-server-legacy/src/main/java/org/opends/server/util/Platform.java
@@ -84,10 +84,10 @@
  public static enum KeyType
  {
    /** RSA key algorithm with 2048 bits size and SHA1withRSA signing algorithm. */
    RSA("rsa", 2048, "SHA1WithRSA"),
    RSA("rsa", 2048, "SHA256WithRSA"),
    /** Elliptic Curve key algorithm with 233 bits size and SHA1withECDSA signing algorithm. */
    EC("ec", 256, "SHA1withECDSA");
    EC("ec", 256, "SHA256withECDSA");
    /** Default key type used when none can be determined. */
    public final static KeyType DEFAULT = RSA;