InvalidKeyException java.security.InvalidKeyException:没有安装的提供程序支持此键:(null)

时间:2014-10-22 22:06:37

标签: java encryption aes

我有两个类,一个是主类,另一个是AES的实现。

但是,在我的AES类中,我有一个解密字符串的方法,但每当我运行它时,它都会产生异常

我的加密方法很好但我的解密方法并没有按预期工作。

代码

private Cipher aesCipherForDecryption;
String strDecryptedText = new String();

public String decryptAES(final String ciphertext) {

    try {

        aesCipherForDecryption = Cipher.getInstance("AES/CBC/PKCS5PADDING");
        aesCipherForDecryption.init(Cipher.DECRYPT_MODE, secretKey, new IvParameterSpec(iV));
        byte[] byteDecryptedText = aesCipherForDecryption.doFinal(byteCipherText);
        strDecryptedText = new String(byteDecryptedText);

    } catch (IllegalBlockSizeException e) {
        System.out.print("IllegalBlockSizeException " +e);
    } catch (BadPaddingException e) {
        System.out.print("BadPaddingException "+e);
    } catch (NoSuchAlgorithmException e) {
        System.out.print("NoSuchAlgorithmException "+ e);
    } catch (NoSuchPaddingException e) {
        System.out.print("NoSuchPaddingException "+e);
    } catch (InvalidKeyException e) {
        System.out.print("InvalidKeyException "+e);
    } catch (InvalidAlgorithmParameterException e) {
        System.out.print("InvalidAlgorithmParameterException "+e);
    }

    System.out.println("\nDecrypted Text message is " + strDecryptedText);
    return strDecryptedText;
}

此方法输出的错误是

  

InvalidKeyException java.security.InvalidKeyException:没有安装的提供程序支持此密钥:(null)

更新#1:

所以我已将代码更新为以下

public String decryptAES(byte[] ciphertext) {
    String strDecryptedText = new String();
        try {
            byte[] byteDecryptedText = aesCipherForDecryption.doFinal(ciphertext);

            strDecryptedText = new String(byteDecryptedText);

        } catch (IllegalBlockSizeException e) {
            System.out.print("IllegalBlockSizeException "+e);
            e.printStackTrace();
        } catch (BadPaddingException e) {
            System.out.print("BadPaddingException "+e);
            e.printStackTrace();
        }

    System.out.println("\nDecrypted Text message is " + strDecryptedText);
    return strDecryptedText;
}    

在主要课程中我有这一行

byte [] byteciphertext = ciphertext.getBytes();

只是将字符串转换为字节

是对的吗?我还有

IllegalBlockSizeException javax.crypto.IllegalBlockSizeException: Input length must be multiple of 16 when decrypting with padded cipherjavax.crypto.IllegalBlockSizeException: Input length must be multiple of 16 when decrypting with padded cipher

有人可以帮我解决这个问题吗?

谢谢。

1 个答案:

答案 0 :(得分:4)

secretKey显然是null.

其他问题:

  • 您没有使用输入参数cipherText
  • 输入参数cipherText应该是byte[],而不是String:密文是二进制文件,String不是二进制数据的容器。
  • 结果字符串strDecryptedText应该是局部变量,而不是成员变量。