无法初始化 cipher.init()

Not able to initialize cipher.init()

我正在尝试读取一个大小为1KB的文件,然后在CBC模式下使用AES算法对其进行加密和解密。当我尝试初始化密码时,它会抛出错误。请在下面找到代码。 我在 cipher class 中找不到接受 "encryption mode"、"secret key" 和 class IvParameterSpec 的初始化向量的初始化方法。我可以看到带有预期参数的 init 方法,例如(int encryption mode, Key key, AlgorithmParameters algoParameters, SecureRandom secureRandom)

我是否需要将我的密钥和初始化向量转换为所需的 class。 任何进一步推进的见解都会有所帮助。

import sun.security.provider.SecureRandom;

import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.NoSuchPaddingException;
import javax.crypto.SecretKey;
import javax.crypto.spec.IvParameterSpec;
import java.io.File;
import java.security.AlgorithmParameters;
import java.security.Key;
import java.security.NoSuchAlgorithmException;
import java.security.spec.InvalidParameterSpecException;

public class AESFileEncryptionDecryption {
    public class AES128CBC{
        SecretKey secretKey;
        Cipher cipher;
        SecureRandom secureRandom = new SecureRandom();
        byte[] iv = new byte[16];
        IvParameterSpec ivParameterSpec = new IvParameterSpec(iv);

        {
            try {
                secretKey = KeyGenerator.getInstance("AES").generateKey();
                cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
                cipher.init(1,secretKey,ivParameterSpec);
            } catch (NoSuchAlgorithmException | NoSuchPaddingException e) {
                e.printStackTrace();
            }
        }
        }
    }
    public static void main(String[] args) {
        File inputFile_1KB = new File("/Users/siddharthsinha/Desktop/input1KB.txt");
        File encryptedFile_1KB = new File("/Users/siddharthsinha/Desktop/input1KB.encrypted");
        File decryptedFile_1KB = new File("/Users/siddharthsinha/Desktop/input1KB.decrypted.txt");
    }
}

您的代码既没有捕获也没有抛出两个可能抛出的异常:

try {
            secretKey = KeyGenerator.getInstance("AES").generateKey();
            cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
            cipher.init(1,secretKey,ivParameterSpec);
        } catch (NoSuchAlgorithmException | NoSuchPaddingException e) {
            e.printStackTrace();
        } catch (InvalidAlgorithmParameterException e) {
            e.printStackTrace();
        } catch (InvalidKeyException e) {
            e.printStackTrace();
        }