我正在一个项目中,我需要通过RMI网络显示一些加密解密。
我为此使用RSA系统。
在解密时,我的代码给我以下错误:
javax.crypto.BadPaddingException: Message is larger than modulus
at sun.security.rsa.RSACore.parseMsg(RSACore.java:182)
at sun.security.rsa.RSACore.crypt(RSACore.java:112)
at sun.security.rsa.RSACore.rsa(RSACore.java:103)
at com.sun.crypto.provider.RSACipher.doFinal(RSACipher.java:355)
at com.sun.crypto.provider.RSACipher.engineDoFinal(RSACipher.java:382)
at javax.crypto.Cipher.doFinal(Cipher.java:2087)
at Node.decryptData(Node.java:463)
at Node.receiveMsgL(Node.java:451)
at MiniServer.callLeaderR(MiniServer.java:89)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:322)
at sun.rmi.transport.Transport$1.run(Transport.java:177)
at sun.rmi.transport.Transport$1.run(Transport.java:174)
at java.security.AccessController.doPrivileged(Native Method)
at sun.rmi.transport.Transport.serviceCall(Transport.java:173)
at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:556)
at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:811)
at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:670)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
at java.lang.Thread.run(Thread.java:744)
这是我的解密代码:
private void decryptData(String PrivateK,byte[] data) throws IOException {
System.out.println("\n-------DECRYPTION STARTED----");
byte[] descryptedData = null;
try {
PrivateKey privateKey = readPrivateKeyFromFile(PrivateK);
Cipher cipher = Cipher.getInstance("RSA");
cipher.init(Cipher.DECRYPT_MODE, privateKey);
descryptedData = cipher.doFinal(data);
System.out.println("Decrypted Data: " + new String(descryptedData));
} catch (Exception e) {
e.printStackTrace();
}
System.out.println("------DECRYPTION COMPLETED-----");
}
我尝试在加密时使用cipher.update(byte [] data)。我有String数据,并在加密时使用string.getByte()将其转换为字节数组。
如果我使用更新方法,则会给我IllegalBlockException错误,即数据不能大于模数。
请帮助我。我无法在代码中找到错误。
最佳答案
像RSA这样的非对称密码旨在对短数据(通常是对称密钥)进行加密,而大数据则使用对称分组密码(该对称密钥将与非对称密码进行交换)进行加密。在StackOverflow上确实有很多类似的问题和答案。 This one是提供了很好的答案。