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

Matthew Swift
19.26.2012 108e2020c1d149962dfc43dcbc6bc24a05a8e5f7
opends/src/server/org/opends/server/extensions/CryptPasswordStorageScheme.java
@@ -173,7 +173,7 @@
    String output;
    try
    {
      output = bsdmd5crypt.crypt(plaintext.toString());
      output = BSDMD5Crypt.crypt(plaintext.toString());
    }
    catch (Exception e)
    {
@@ -257,7 +257,7 @@
    String storedString = storedPassword.toString();
    try
    {
      String userString   = bsdmd5crypt.crypt(plaintextPassword.toString(),
      String userString   = BSDMD5Crypt.crypt(plaintextPassword.toString(),
        storedString);
      return userString.equals(storedString);
    }