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

Jean-Noel Rouvignac
25.01.2014 65a6e3594c2a75f8dc18c1d10b15b464b0ddb613
opends/src/server/org/opends/server/extensions/PKCS5S2PasswordStorageScheme.java
@@ -223,6 +223,10 @@
    try
    {
      int pos = authInfo.indexOf(':');
      if (pos == -1)
      {
        return false;
      }
      int iterations = Integer.parseInt(authInfo.substring(0, pos));
      byte[] saltBytes   = Base64.decode(authInfo.substring(pos + 1));
      byte[] digestBytes = Base64.decode(authValue);