[ 
https://issues.apache.org/jira/browse/SHIRO-483?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Salih ERİKCİ updated SHIRO-483:
-------------------------------

    Summary: passwordsMatch() returns false with right plain password-encrypted 
password in JVM with default locale tr_TR  (was: PasswordMatch returns false 
with right plain password-encrypted password in JVM with default locale tr_TR)

> passwordsMatch() returns false with right plain password-encrypted password 
> in JVM with default locale tr_TR
> ------------------------------------------------------------------------------------------------------------
>
>                 Key: SHIRO-483
>                 URL: https://issues.apache.org/jira/browse/SHIRO-483
>             Project: Shiro
>          Issue Type: Bug
>          Components: Authentication (log-in)
>    Affects Versions: 1.2.2
>         Environment: JVM Locale tr_TR
>            Reporter: Salih ERİKCİ
>              Labels: password
>             Fix For: 1.2.3
>
>   Original Estimate: 168h
>  Remaining Estimate: 168h
>
>     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) { 
>         PasswordService psd = new DefaultPasswordService(); 
>         String password = "333"; 
>         String enc = psd.encryptPassword(password); 
>         Locale.setDefault(Locale.ENGLISH); 
>         System.out.print(psd.passwordsMatch(password, enc)); 
>         
>     } 



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)

Reply via email to