Le code ci-dessous envoie ce message d'erreur:
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;
Est-ce que quelqu'un sait pourquoi je reçois cette erreur?
Vous n'avez probablement pas encore installé le fichier de stratégie JCE.
Téléchargez ce fichier:
Et installez le fichier dans ${Java.home}/jre/lib/security/.
${Java.home}
fait référence à votre répertoire d'installation de Java
pour Mac:
/Library/Java/JavaVirtualMachines
Contents/Home/jre/lib/security
pour 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>/
Téléchargez JCE pour Java 7 à partir de ce lien http://www.Oracle.com/technetwork/Java/javase/downloads/jce-7-download-432124.html
et ouvrez le chemin C:\Program Files\Java\jdk1.7.0_80\jre\lib\security
et collez les deux pots ici (même si les deux pots étaient déjà présents, remplacez-les)
Si vous utilisez Mac avec homebrew
brew cask install jce-unlimited-strength-policy
À partir de JDK 1.8u151, il n'est plus nécessaire de télécharger les bibliothèques JCE séparément. Éditez simplement:
$JDK_HOME/jre/lib/security/Java.security
et décommentez la ligne:
crypto.policy=unlimited
Pour Java 7, le lien de téléchargement est jce-7-download
Copiez les deux fichiers JAR téléchargés dans Java\jdk1.7.0_10\jre\lib\security. Sauvegardez les anciens fichiers JAR pour plus de sécurité.