RSA BadPaddingException当试图解密一个int时



我知道以前有人问过类似的问题,但我找不到针对我的问题的答案。我试图使用RSA加密来拍摄带有加密像素的图像,并使用相同的私钥对其解密。我一直遇到一个问题,虽然当我试图解密的int我从图像的像素使用getRGB()。下面是我的代码:

int pixel = img.getRGB(1, 1);
System.out.println(pixel);
byte[] bytes = ByteBuffer.allocate(4).putInt(pixel).array();
System.out.println(fromByteArray(bytes));
bytes = rsa.RSADecryptB(privk, bytes);
int nom = ByteBuffer.wrap(bytes).getInt(); // big-endian by default
System.out.println(nom);

这是在我的主类中,它从另一个类调用RSADecryptB方法,这是该方法:

public static []byte RSADecryptB(PrivateKey privatekey, byte[] cipherText) {
byte[] ll = null;
  try {
     /* Create cipher for decryption. */
     Cipher decrypt_cipher = Cipher.getInstance("RSA");
     decrypt_cipher.init(Cipher.DECRYPT_MODE, privatekey);

     ll = decrypt_cipher.doFinal(cipherText);
  } catch (IllegalBlockSizeException e) {
     System.out.println("1");
     e.printStackTrace();
  }
  catch (InvalidKeyException et) {
     System.out.println("2");
     et.printStackTrace();
  }
  catch (NoSuchAlgorithmException ev) {
     System.out.println("3");
     ev.printStackTrace();
  }
  catch (BadPaddingException ea) {
     System.out.println("4");
     ea.printStackTrace();
  }
  catch (NoSuchPaddingException eo) {
     System.out.println("5");
     eo.printStackTrace();
  }
  return ll;

}

当我运行程序时,输出如下:

-1606258341
5
4
javax.crypto.BadPaddingException: Decryption error
at sun.security.rsa.RSAPadding.unpadV15(RSAPadding.java:380)
at sun.security.rsa.RSAPadding.unpad(RSAPadding.java:291)
at com.sun.crypto.provider.RSACipher.doFinal(RSACipher.java:363)
at com.sun.crypto.provider.RSACipher.engineDoFinal(RSACipher.java:389)
at javax.crypto.Cipher.doFinal(Cipher.java:2165)
at Encryption5.RSADecryptB(Encryption5.java:126)
at ImageEncryptor.main(ImageEncryptor.java:405)
Exception in thread "main" java.lang.NullPointerException
at java.nio.ByteBuffer.wrap(ByteBuffer.java:396)
at ImageEncryptor.main(ImageEncryptor.java:406)

我不明白为什么会这样。-1606258341是像素的值,输出5和4是因为NoSuchPaddingException和BadPaddingException。如果有人能帮我解释一下为什么会这样,我做错了什么,那就太好了。谢谢!

编辑:我知道我可能不应该直接使用RSA,但我也在自己做加密,逐像素。我这样做更多的是为了练习使用buffereimages/byte arrays/rsa,而不是为了创建最有效/安全的程序。另外,当我在我的加密方法中解密整数时,它工作得很好。当我解密它从一个不同的方法,我得到了错误。此外,加密后的图像被保存到一个文件,然后提取解密。这是我的加密方法也(它不使用任何填充):

 int w = img.getWidth();
     int h = img.getHeight();
     byte[] bytes = null;
     ByteBuffer wrappedo = null;
     int nom = 0;
     ByteBuffer wrapped = null;
     int num = 0;
     int pixel = 0;
System.out.println("width, height: " + w + ", " + h);
for (int i = 0; i < h; i++) {
  for (int j = 0; j < w; j++) {
     pixel = img.getRGB(j, i);
bytes = ByteBuffer.allocate(4).putInt(pixel).array();
bytes = rsa.RSAEncrypt(bytes);
wrappedo = ByteBuffer.wrap(bytes); // big-endian by default
nom = wrappedo.getInt();
img.setRGB(j, i, nom);
}
  } 

下面是RSAEncrypt方法:

public static byte[] RSAEncrypt(byte[] data) {
byte[] cipherData = null;
try {
PublicKey pubKey = readKeysFromFile();
Cipher cipher = Cipher.getInstance("RSA");
cipher.init(Cipher.ENCRYPT_MODE, pubKey);
cipherData = cipher.doFinal(data);
}
catch (Exception e) {}
return cipherData;
}

您需要用于加密图像的方法。几乎可以肯定的是,它无法以您目前期望的方式加密。它可能是普通/原始/教科书/玩具RSA(只是模幂),但在这种情况下,您需要自己创建解密例程。

不太可能每个像素都被单独加密。正如JB Nizet已经提到的那样,这将是非常低效的。RSA输出是密钥对的大小(反过来,它与模数的字节大小相同)。RSA密钥对的密钥大小至少应该是512位,以使其难以解密,并且大约2048位是安全的。通常使用混合方案使用RSA加密较大的文本(例如,首先使用AES加密,然后使用RSA加密AES密钥)。

此外,您当前指定"RSA"为算法。对于SUNRSA提供程序(以及大多数其他提供程序),这将转换为"RSA/ECB/PKCS1Padding",因为"ECB""PKCS1Padding"是默认值。pkcs# 1填充的开销为11字节。因此,如果您的密文小于模密文小于11字节,则解密必须失败-并且它确实失败了。

相关内容

  • 没有找到相关文章

最新更新