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); }