Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.2.2
-
JVM Locale tr_TR
Description
public static void main(String[] args)
{ PasswordService psd = new DefaultPasswordService(); String password = "333"; String enc = psd.encryptPassword(password); System.out.print(psd.passwordsMatch(password, enc)); }The above code outputs "false" on JVM which has default locale tr_TR, the following outputs "true"
public static void main(String[] args)