gpt4 book ai didi

java.security.InvalidKeyException : Key length not 128/192/256 bits

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:01:13 25 4
gpt4 key购买 nike

我是 Java 的新手,正在尝试使用混合加密技术,使用 AES-128 对称加密,然后对生成的对称 key 使用 RSA-1024 非对称加密。有人可以帮助我为什么会收到此异常。我已经关注了其他帖子,并在相应的文件夹中下载了 Java 加密扩展 (JCE) 无限强度管辖策略文件版本 6。

Code snippet:
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.security.Key;
import java.security.InvalidKeyException;
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.Security;
import java.security.interfaces.RSAPrivateKey;
import java.security.interfaces.RSAPublicKey;
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.spec.SecretKeySpec;
import java.security.SecureRandom;

public class MainClass {

/**
* @param args
* Encryption and Decryption with AES/ECB/PKCS7Padding and RSA/ECB/PKCS1Padding
*/
public static void main(String[] args) throws Exception {
// TODO Auto-generated method stub
Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider());
System.out.println("Enter a Message to be encrypted!");
// Read an input from console
InputStreamReader isr = new InputStreamReader(System.in);
BufferedReader br = new BufferedReader(isr);
String s = br.readLine();

// Get the bytes of the input stream. Convert the input text
// to bytes.
byte[] input = s.getBytes("UTF8");

System.out.println("Input Message : " + new String(input));

// AES 128 bits Symmetric encryption of data

// Generate the AES key for Symmetric AES encryption
KeyGenerator kgenerator = KeyGenerator.getInstance("AES", "BC");
SecureRandom random = new SecureRandom();
kgenerator.init(128, random);

Key aeskey = kgenerator.generateKey();
byte[] raw = aeskey.getEncoded();
int sykLength = raw.toString().length();
SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");

System.out.println("Generated Symmetric Key :" + raw);
System.out.println("Generated Symmetric Key Length :" + sykLength);
System.out.println("Generated Key Length in Bytes: " + raw.length);

// Encrypt the data using AES cipher
Cipher cipher = Cipher.getInstance("AES/CBC/PKCS7Padding", "BC");
cipher.init(Cipher.ENCRYPT_MODE, skeySpec);
byte[] cipherText = new byte[cipher.getOutputSize(input.length)];
int ctLength = cipher.update(input, 0, input.length, cipherText, 0);
ctLength += cipher.doFinal(cipherText, ctLength);

System.out.println("Encrypted Message :" + new String(cipherText));
System.out.println("Encrypted Message Length: " + ctLength);

// RSA 1024 bits Asymmetric encryption of Symmetric AES key

// Generate Public and Private Keys (Can also use a certificate for keys)
KeyPairGenerator kpg = KeyPairGenerator.getInstance("RSA", "BC");
kpg.initialize(1024, random);
KeyPair kpa = kpg.genKeyPair();
RSAPublicKey pubKey = (RSAPublicKey) kpa.getPublic();
RSAPrivateKey privKey = (RSAPrivateKey)kpa.getPrivate();

// Encrypt the generated Symmetric AES Key using RSA cipher
Cipher rsaCipher = Cipher.getInstance("RSA/ECB/PKCS1Padding", "BC");
rsaCipher.init(Cipher.ENCRYPT_MODE, pubKey);
byte[] rawRSA = raw.toString().getBytes("UTF8");
byte[] cipherTextRSA = new byte[rsaCipher.getOutputSize(rawRSA.length)];
int ctLengthRSA = rsaCipher.update(rawRSA, 0, rawRSA.length, cipherTextRSA, 0);
ctLengthRSA += rsaCipher.doFinal(cipherTextRSA, ctLengthRSA);

System.out.println("Encrypted Symmetric Key :" + cipherTextRSA);
System.out.println("Encrypted Symmetric Key Length :" + ctLengthRSA);
System.out.println("Encrypted Symmetric Key Length in Bytes: " + cipherTextRSA.length);

// RSA Decryption of Encrypted Symmetric AES key
rsaCipher.init(Cipher.DECRYPT_MODE, privKey);
byte[] plainTextRSA = new byte[rsaCipher.getOutputSize(ctLengthRSA)];
int ptLengthRSA = rsaCipher.update(cipherTextRSA, 0, ctLengthRSA, plainTextRSA, 0);
ptLengthRSA += rsaCipher.doFinal(plainTextRSA, ptLengthRSA);
SecretKeySpec DecrypskeySpec = new SecretKeySpec(plainTextRSA, "AES");

System.out.println("Decrypted Symmetric Key: " + new String(plainTextRSA));
System.out.println("Decrypted Symmetric Key Length: " + ptLengthRSA);
System.out.println( "Decrypted Symmetric Key Length in Bytes: " + plainTextRSA.length);

cipher.init(Cipher.DECRYPT_MODE, DecrypskeySpec, cipher.getParameters());
byte[] plainText = new byte[cipher.getOutputSize(ctLength)];
int ptLength = cipher.update(cipherText, 0, ctLength, plainText, 0);
ptLength += cipher.doFinal(plainText, ptLength);
System.out.println("Decrypted Message: " + new String(plainText));
System.out.println("Decrypted Message Length: " + ptLength);
System.out.println("Decrypted Message Length in Bytes: " + plainText.length);
}
}

我得到的异常:

Enter a Message to be encrypted!
test
Input Message : test
Generated Symmetric Key :[B@1c74f37
Generated Symmetric Key Length :10
Generated Key Length in Bytes: 16
Encrypted Message :ýÒSœW¶Þ34Ý­GÝ
Encrypted Message Length: 16
Encrypted Symmetric Key :[B@1df280b
Encrypted Symmetric Key Length :128
Encrypted Symmetric Key Length in Bytes: 128
Decrypted Symmetric Key: [B@1c74f37 (Some symbols I got along with this decrypted key which I could not paste here)
Decrypted Symmetric Key Length in Bytes: 117
Exception in thread "main" java.security.InvalidKeyException: Key length not 128/192/256 bits.
at org.bouncycastle.jce.provider.JCEBlockCipher.engineInit(Unknown Source)
at org.bouncycastle.jce.provider.JCEBlockCipher.engineInit(Unknown Source)
at javax.crypto.Cipher.init(DashoA13*..)
at javax.crypto.Cipher.init(DashoA13*..)
at com.sap.srm.crpto.client.applet.MainClass.main(MainClass.java:99)

最佳答案

实际上,您尝试使用非对称 RSA 包装和解包对称 key 时存在很多错误,所以我清理了它(我的机器上没有 Bouncy CaSTLe,所以我使用了默认的 Sun 提供程序,请随意在需要的地方添加“BC”):

KeyGenerator kgenerator = KeyGenerator.getInstance("AES");
SecureRandom random = new SecureRandom();
kgenerator.init(128, random);
Key aeskey = kgenerator.generateKey();

KeyPairGenerator kpg = KeyPairGenerator.getInstance("RSA");
kpg.initialize(1024, random);
KeyPair kpa = kpg.genKeyPair();
PublicKey pubKey = kpa.getPublic();
PrivateKey privKey = kpa.getPrivate();

// Encrypt the generated Symmetric AES Key using RSA cipher
Cipher rsaCipher = Cipher.getInstance("RSA/ECB/PKCS1Padding");
rsaCipher.init(Cipher.WRAP_MODE, pubKey);
byte[] encryptedSymmKey = rsaCipher.wrap(aeskey);
// RSA Decryption of Encrypted Symmetric AES key
rsaCipher.init(Cipher.UNWRAP_MODE, privKey);
Key decryptedKey = rsaCipher.unwrap(encryptedSymmKey, "AES", Cipher.SECRET_KEY);

System.out.println("Decrypted Key Length: " + decryptedKey.getEncoded().length * 8); // -> 128

关于java.security.InvalidKeyException : Key length not 128/192/256 bits,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6625776/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com