-
Bug
-
Resolution: Fixed
-
P2
-
1.4.2_04
-
06
-
sparc
-
solaris_8
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2098632 | 5.0 | Ross Knippel | P2 | Resolved | Fixed | b56 |
The test case is as follows.
import cryptix.tools.UnixCrypt;
public class Test {
public static void main(String args[]) {
String cryptPass ="";
String prePass = "";
String account = "abcdefg";
String password = "abcdefghi123";
UnixCrypt jc = new UnixCrypt(account);
for(int i = 0; i < 10000; i++)
{
cryptPass = jc.crypt(password);
if(i != 0)
{
if(!prePass.equals(cryptPass))
{
System.out.println("Mismatch");
break;
}
}
prePass = cryptPass;
}
}
}
j2sdk1.4.2_04/bin/java -server -classpath .:cryptix32.jar Test
A mismatch is found when it shouldnt occur.
The problem is not occuring when using 1.3.1_11 or 1.5.0-beta2-b49.
###@###.### 2004-05-18
###@###.### 2004-05-18
import cryptix.tools.UnixCrypt;
public class Test {
public static void main(String args[]) {
String cryptPass ="";
String prePass = "";
String account = "abcdefg";
String password = "abcdefghi123";
UnixCrypt jc = new UnixCrypt(account);
for(int i = 0; i < 10000; i++)
{
cryptPass = jc.crypt(password);
if(i != 0)
{
if(!prePass.equals(cryptPass))
{
System.out.println("Mismatch");
break;
}
}
prePass = cryptPass;
}
}
}
j2sdk1.4.2_04/bin/java -server -classpath .:cryptix32.jar Test
A mismatch is found when it shouldnt occur.
The problem is not occuring when using 1.3.1_11 or 1.5.0-beta2-b49.
###@###.### 2004-05-18
###@###.### 2004-05-18
- backported by
-
JDK-2098632 Hotspot compiler changes behaviour of program
-
- Resolved
-