-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
1.2.1
-
x86
-
windows_nt
Name: sg39081 Date: 05/10/2000
java version "1.2.2"
Classic VM (build JDK-1.2.2-001, native threads, symcjit)
I downloaded the JCE 1.2.1 version and installed the 4 jars(jce1_2_1.jar,
local_policy.jar, sunjce_provider.jar, US_export_policy.jar) into the jdk1.2.2
\jre\lib\ext folder and I added
"security.provider.2=com.sun.crypto.provider.SunJCE"
to the secruity.java according to the install instructions. I then wrote a very
simple application that uses the JCE 1.2.1 classes as follows:
import java.io.*;
import java.security.*;
import javax.crypto.*;
import sun.misc.*;
public class GenPrivKey
{
public static void main (String[] args) throws Exception
{
KeyGenerator generator = KeyGenerator.getInstance("DES");
generator.init(64, new SecureRandom());
Key key = generator.generateKey();
}
}
I got the following exception:
Exception in thread "main" java.lang.ExceptionInInitializerError: java.lang.SecurityException: Cannot set up certs for trusted CAs
at javax.crypto.b.<clinit>([DashoPro-V1.2-120198])
at javax.crypto.Cipher.getInstance([DashoPro-V1.2-120198])
at GenPrivKey.main(GenPrivKey.java:12)
Is there something missing in the install package, install instructions or is
there a bug?
(Review ID: 104524)
======================================================================
- duplicates
-
JDK-4340613 jce1.2.1 test suite won't work under JDK1.2.2
-
- Resolved
-