Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Exception in thread "main" java.security.InvalidKeyException: Illegal key size or default parameters [duplicate]

Tags:

java

jce

The code belows is throwing this error message:

Exception in thread "main" java.security.InvalidKeyException: Illegal key size or default parameters

Cipher dcipher;

byte[] salt = new String("12345678").getBytes();
int iterationCount = 1024;
int keyStrength = 256;
SecretKey key;
byte[] iv;

Decrypter(String passPhrase) throws Exception {
    SecretKeyFactory factory = SecretKeyFactory
            .getInstance("PBKDF2WithHmacSHA1");
    System.out.println("factory +" + factory);
    KeySpec spec = new PBEKeySpec(passPhrase.toCharArray(), salt,
            iterationCount, keyStrength);
    System.out.println("spec  " + spec);
    SecretKey tmp = factory.generateSecret(spec);
    System.out.println();
    key = new SecretKeySpec(tmp.getEncoded(), "AES");
    dcipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
}

public String encrypt(String data) throws Exception {
    dcipher.init(Cipher.ENCRYPT_MODE, key);
    AlgorithmParameters params = dcipher.getParameters();
    iv = params.getParameterSpec(IvParameterSpec.class).getIV();
    byte[] utf8EncryptedData = dcipher.doFinal(data.getBytes());
    String base64EncryptedData = new sun.misc.BASE64Encoder()
            .encodeBuffer(utf8EncryptedData);

    System.out.println("IV "
            + new sun.misc.BASE64Encoder().encodeBuffer(iv));
    System.out.println("Encrypted Data " + base64EncryptedData);
    return base64EncryptedData;

Does anybody know why I get that error?

like image 669
user2968404 Avatar asked Nov 08 '13 10:11

user2968404


2 Answers

Probably you did not install the JCE Policy file yet.

Download this file:

  • Java 6

  • Java 7

  • Java 8

And Install the file in ${java.home}/jre/lib/security/.

${java.home} refers to your installation directory of Java

for mac:

  • open finder
  • press command + shift + g
  • type /Library/Java/JavaVirtualMachines
  • navigate to your version of JDK
  • then Contents/Home/jre/lib/security
  • unzip the downloaded file and place all files inside here

for CLI

unzip downloaded_policy_file.zip  -d /Library/Java/JavaVirtualMachines/<JDK_VERSION>/Contents/Home/jre/lib/security/

mv /Library/Java/JavaVirtualMachines/<JDK_VERSION>/Contents/Home/jre/lib/security/UnlimitedJCEPolicyJDK<VERSION>/* /Library/Java/JavaVirtualMachines/<JDK_VERSION>/Contents/Home/jre/lib/security  

rm -rf Library/Java/JavaVirtualMachines/<JDK_VERSION>/Contents/Home/jre/lib/security/UnlimitedJCEPolicyJDK<VERSION>/
like image 166
CodeFanatic Avatar answered Sep 24 '22 11:09

CodeFanatic


Download the JCE for Java 7 from this link http://www.oracle.com/technetwork/java/javase/downloads/jce-7-download-432124.html

and open the path C:\Program Files\Java\jdk1.7.0_80\jre\lib\security and paste the two jars here.(Even if the two jars were already present replace those two jars)

like image 38
Lucky Avatar answered Sep 20 '22 11:09

Lucky