当前位置: 代码迷 >> 综合 >> RSA解密报错:javax.crypto.BadPaddingException: Decryption error
  详细解决方案

RSA解密报错:javax.crypto.BadPaddingException: Decryption error

热度:52   发布时间:2023-10-24 08:27:36.0

RSA解密报错:javax.crypto.BadPaddingException: Decryption error

RSA解密方法默认byte数组长度为128,实际上长度应该为256。
把RSA解密方法中的:

byte[] buffer = new byte[128];

修改为:

byte[] buffer = new byte[256];

即可。


喜欢本文的朋友不要忘记点一个免费的赞哦,你的赞将是我最大的动力。

  相关解决方案