-
Bug
-
Resolution: Fixed
-
P4
-
1.1.6
-
1.1.6
-
generic, x86
-
generic, windows_95, windows_nt
-
Not verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2020609 | 1.2.0 | Deepa Viswanathan | P4 | Resolved | Fixed | 1.2beta4 |
Name: tb29552 Date: 05/13/98
/**
When running on top of the new JDK 1.1.6 or
JRE 1.1.6 Java interpreter in a Win32 environment,
JSAFE_SecureRandom hangs (see examples below). We
believe that this is directly related to the JIT
compiler, which was introduced in 1.1.6,
because the problem does not arise when we run
the tests with the interpreter's -nojit option and
it did not occur with the 1.1.5 release.
-----------------------------------------
CONFIGURATION: JSafe 1.1, WinTel / NT 4.0,
JDK 1.1.6 or JRE 1.1.6
-----------------------------------------
EXAMPLES:
Compile the following test class and run it
against either the jdk interpreter, java,
or the runtime interpreter, jre. Then run it
again using the "-nojit" option,
and it will work.
*/
import COM.rsa.jsafe.*;
import java.io.*;
public class RSATest1 extends Object {
public static void main(String[] args) {
try {
System.out.println("Getting instance ...");
JSAFE_SecureRandom random =
JSAFE_SecureRandom.getInstance("MD5Random", "Java");
System.out.println("Auto seeding ...");
random.autoseed();
System.out.println("Never gets here.");
random.generateRandomBytes(20);
}
catch (JSAFE_UnimplementedException e) {
e.printStackTrace();
};
}
}
/*
To ensure that the problem does not lie with
the autoseed, which relies on java's own
mechanisms, we also ran the test
with explicit seeding but found that
it then hangs on the
generateRandomBytes method.
*/
public class RSATest2 {
public static void main(String[] args) {
try {
System.out.println("JSAFE_SecureRandom: Getting MD5 instance ...");
COM.rsa.jsafe.JSAFE_SecureRandom md5random =
COM.rsa.jsafe.JSAFE_SecureRandom.getInstance("MD5Random", "Java");
System.out.println("Explicit seeding ...");
md5random.setSeed((new String("ljkdfj823rlkjasdf8jasd ad")).getBytes());
System.out.println("Generating random bytes ...");
md5random.generateRandomBytes(20);
System.out.println("MD5 finished.");
} catch (COM.rsa.jsafe.JSAFE_UnimplementedException e) {
e.printStackTrace();
};
}
}
(Review ID: 30311)
======================================================================
- backported by
-
JDK-2020609 JIT VM Hangs when generating random bytes
-
- Resolved
-
- duplicates
-
JDK-4130047 Java JDK 1.1.6+Symantec JITL : page fault crashes VM
-
- Closed
-
-
JDK-4138047 jdk 1.1.6 jit causes runaway process exhausting virtual memory on win32
-
- Closed
-
-
JDK-4140202 Compute intensive application: JIT takes 100% of CPU; process never ends.
-
- Closed
-
-
JDK-4142953 Infinite hang in Symantec JIT
-
- Closed
-
- relates to
-
JDK-4171185 JVM crashes invoking a long method
-
- Closed
-
-
JDK-4181755 JIT is slow for cryptographic functions and other huge blocks of inlined code
-
- Closed
-