Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4337151

java.lang.SecurityException: Cannot set up certs for a trusted CAs

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • None
    • 1.2.1
    • security-libs



      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)
      ======================================================================

            shihliu Sharon Liu (Inactive)
            sgoodsunw Sheri Good (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: