這是我的基本對稱加密程序。現在我正在學習,我想知道這是如何工作的。我有以下異常:線程 「main」 java.security.InvalidKeyExceptionJava對稱加密程序中的密鑰大小無效
異常:非法 密鑰大小或默認參數在javax.crypto.Cipher.a(DashoA13 * ..) 在使用javax。 crypto.Cipher.init(DashoA13 * ..)處 sample.MainClass.main(MainClass.java:24) javax.crypto.Cipher.init(DashoA13 * ..)
這是我的計劃:
public class MainClass {
public static void main(String[] args) throws Exception {
Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider());
byte[] input = " www.java2s.com ".getBytes();
byte[] keyBytes = new byte[] { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09,
0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17 };
SecretKeySpec key = new SecretKeySpec(keyBytes, "AES");
Cipher cipher = Cipher.getInstance("AES/ECB/NoPadding", "BC");
System.out.println("input text : " + new String(input));
// encryption pass
byte[] cipherText = new byte[input.length];
cipher.init(Cipher.ENCRYPT_MODE, key);
int ctLength = cipher.update(input, 0, input.length, cipherText, 0);
ctLength += cipher.doFinal(cipherText, ctLength);
System.out.println("cipher text: " + new String(cipherText) + " bytes: " + ctLength);
// decryption pass
byte[] plainText = new byte[ctLength];
cipher.init(Cipher.DECRYPT_MODE, key);
int ptLength = cipher.update(cipherText, 0, ctLength, plainText, 0);
ptLength += cipher.doFinal(plainText, ptLength);
System.out.println("plain text : " + new String(plainText) + " bytes: " + ptLength);
}
}
你能告訴我如何解決這個問題嗎?
你是否已經從Oracle安裝了無限加密文件? –
[Java安全:非法密鑰大小或默認參數?]的可能重複(http://stackoverflow.com/questions/6481627/java-security-illegal-key-size-or-default-parameters) –
如果您正在學習一個新的語言,我建議你增加你的研究自己的答案的胃口。一個簡單的谷歌你的異常消息帶來了數百頁解釋相同的解決方案(謝謝@owlstead)。對於您在Java中不瞭解的任何異常,這是一個很好的起點。 –