java javax.crypto.BadPaddingException: 错误

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/4146324/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-30 05:01:02  来源:igfitidea点击:

javax.crypto.BadPaddingException: error

javaencryption

提问by tadpole

I am trying to run a simple encryption/decryption program. I am getting a padding exception. There must be something hidden that I am not aware. I basically encrypted a string write it to a file, read it back, and decrypted it. The original encrypted array was decrypted without a problem. I compared the original encrypted array with the array read back from the file, they were identical from what I can see. The buffer from the file does not work, so there must be something difference. I don't know what to do.

我正在尝试运行一个简单的加密/解密程序。我收到填充异常。一定有我不知道的隐藏的东西。我基本上加密了一个字符串,将其写入文件,读回并解密。原始加密数组被解密没有问题。我将原始加密数组与从文件中读回的数组进行了比较,从我所见,它们是相同的。来自文件的缓冲区不起作用,所以肯定有什么不同。我不知道该怎么办。

import java.security.*;  
import java.security.spec.InvalidKeySpecException;  
import javax.crypto.Cipher;  
import javax.crypto.spec.SecretKeySpec;  

import java.io.*;  

public class sample  
{  
   private static String _algo = "AES";  
   private static byte[] _key = new byte[16];  

   public static byte[] encrypt (String val) throws Exception  
   {  
      Key key = new SecretKeySpec (_key, _algo);  
      Cipher c = Cipher.getInstance (_algo);  

      c.init (Cipher.ENCRYPT_MODE, key);  

      byte[] encode = c.doFinal (val.getBytes());  

      return encode;  
   }  

   public static String decrypt (byte[] val) throws Exception    
   {  
      Key key = new SecretKeySpec (_key, _algo);  
      Cipher c = Cipher.getInstance (_algo);  

      c.init (Cipher.DECRYPT_MODE, key);  

      byte[] decode = c.doFinal (val);  

      String decodeStr = new String (decode);  

      return decodeStr;  
   }  

   public static void main (String[] args) throws Exception  
   {  
      String str = "Good bye cruel world";  

      //  
      // get password from command line  
      //  
      _key = args[0].getBytes();  

      byte[] encodeArray = sample.encrypt (str);  

      //  
      // write encrypted array to file  
      //  
      FileOutputStream os = new FileOutputStream ("data");  
      os.write (encodeArray);  
      os.close();  

      //  
      // decode and print out string  
      //  
      String decodeStr = sample.decrypt (encodeArray);  
      System.out.println ("decodeStr = " + decodeStr);  

      //  
      // read back encrypted string  
      byte[] buffer = new byte[64];  
      FileInputStream is = new FileInputStream ("data");  
      is.read (buffer);  
      is.close();  

      decodeStr = sample.decrypt (buffer);  
      System.out.println ("decodeStr = " + decodeStr);  
   }  
}  

Output:

输出:

java sample 1234567890123456  
decodeStr = Good bye cruel world  
Exception in thread "main" javax.crypto.BadPaddingException: Given final block not   properly padded  
        at com.sun.crypto.provider.SunJCE_f.b(DashoA13*..)  
        at com.sun.crypto.provider.SunJCE_f.b(DashoA13*..)  
        at com.sun.crypto.provider.AESCipher.engineDoFinal(DashoA13*..)  
        at javax.crypto.Cipher.doFinal(DashoA13*..)  
        at sample.decrypt(sample.java:32)  
        at sample.main(sample.java:70)  

回答by dogbane

The problem is that the byte buffer with a size of 64, which you are reading the file into, is too big. Change it to 32.

问题是您正在读取文件的大小为 64 的字节缓冲区太大。将其更改为 32。

Or use the length of the file like this:

或者像这样使用文件的长度:

byte[] buffer = new byte[(int)new File("data").length()];