java - (AES加密)代码缺陷,应该注意什么? [提供代码][Java]

标签 java file encryption aes secure-random

感谢您抽出宝贵的时间来帮助我!

此帖子已被编辑,信息较少,请参阅编辑部分

好吧,我在这个问题上花费了我们的研究,最终得到了一段工作代码..

但是加密不是一个会犯错误的地方,我想问一下我的代码是否真的安全!这对我来说非常重要,因为我想将它实现到一个程序中,所以我的代码是......

import java.nio.file.Files;
import java.nio.file.Paths;

import java.util.Base64;

import javax.crypto.*;
import javax.crypto.spec.SecretKeySpec;
import java.security.SecureRandom;


public class EncryptFile{
    private static final String FILE_IN = "./EncryptFile.java";
    private static final String FILE_ENCR = "./EncryptFile_encr.java";
    private static final String FILE_DECR = "./EncryptFile_decr.java";
     public static void main(String []args){
        try
        {
            Encryption("passwordisnottheactual", Files.readAllBytes(Paths.get(FILE_IN)));
            Decryption("passwordisnottheactual");

        }catch(Exception e){
            System.out.println(e.getMessage());
        }
     }
     private static void Encryption(String Key, byte[] byteArray) throws Exception
     {
        // Decode the base64 encoded Key
        byte[] decodedKey = Base64.getDecoder().decode(Key);
        // Rebuild the key using SecretKeySpec
        SecretKey secretKey = new SecretKeySpec(decodedKey, 0, decodedKey.length, "AES"); 

        // Cipher gets AES Algorithm instance
        Cipher AesCipher = Cipher.getInstance("AES");

        //Initialize AesCipher with Encryption Mode, Our Key and A ?SecureRandom?
        AesCipher.init(Cipher.ENCRYPT_MODE, secretKey, new SecureRandom());
        byte[] byteCipherText = AesCipher.doFinal(byteArray);

        //Write Bytes To File
        Files.write(Paths.get(FILE_ENCR), byteCipherText);


     }
     private static void Decryption(String Key) throws Exception
     {
        //Ddecode the base64 encoded string
        byte[] decodedKey = Base64.getDecoder().decode(Key);
        //Rebuild key using SecretKeySpec
        SecretKey secretKey = new SecretKeySpec(decodedKey, 0, decodedKey.length, "AES"); 

        //Read All The Bytes From The File
        byte[] cipherText = Files.readAllBytes(Paths.get(FILE_ENCR));

        //Cipher gets AES Algorithm Instance
        Cipher AesCipher = Cipher.getInstance("AES");

        //Initialize it in Decrypt mode, with our Key, and a ?SecureRandom?
        AesCipher.init(Cipher.DECRYPT_MODE, secretKey, new SecureRandom());

        byte[] bytePlainText = AesCipher.doFinal(cipherText);
        Files.write(Paths.get(FILE_DECR), bytePlainText);
     }
}

编辑

Possible duplicate of Simple Java AES encrypt/decrypt example – JFPicard

嗯,可能是,但这些答案使用 IVParameterSpec,我想知道是否 这行代码实际上是安全的,或者如果这是不好的做法:

AesCipher.init(Cipher.DECRYPT_MODE, secretKey, new SecureRandom());

因为我每次都使用new SecureRandom(), 我还没有看到有人像这样使用 SecureRandom 对象。

最佳答案

  1. 加密 key
    • 密码作为字符串传递,但加密函数对其进行了 Base64 解码,这是一个编码错误。
    • 使用密码时,应使用 PBKDF2(又名 Rfc2898DeriveBytes)函数从中派生加密 key 。
    • 使用 key 派生时,盐和迭代计数需要可用于解密,通常它们在加密数据的前缀中提供。
  2. 加密模式
    • 未提供加密模式。
    • 使用带有随机 IV 的 CBC 模式。
    • 只需在加密数据前加上 IV 前缀即可用于解密。
  3. 填充
    • AES 是一种分组密码,因此要求输入数据大小是分组大小的倍数。
    • 指定 PKCS#7(née PKCS#5)填充,它将在加密时添加填充并在解密时将其删除。
    • 解密时不会返回“padding”错误,它们可以提供“Padding Oracle”攻击。
  4. 明确
    • 指定所有加密参数和大小。
    • 不要依赖实现默认值。
  5. 加密认证
    • 考虑是否需要知道数据是否正确解密。
  6. 版本控制
    • 添加版本指示器,以便以后需要更改时有一个兼容性路径。

或者考虑使用RNCryptor它处理所有这些以及更多。

更新:(感谢安迪的评论)
如果 GCM 模式可用并且跨平台和库的互操作性不是问题,GCM 可以说是更好的加密模式。 GCM 具有内置的身份验证和填充功能,使其更强大且更容易安全的解决方案。

关于java - (AES加密)代码缺陷,应该注意什么? [提供代码][Java],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41699643/

相关文章:

java - 创建方面,从方法中检索对象并返回另一个对象

java - 单例异常有效吗?

encryption - 有谁知道这是什么语言的吗?

c++ - FileSink、StringSink、Filesource、StringSource Crypto++ 之间有什么区别

linux - 将 key Material 传递给 openssl 命令

java - 我必须关闭 FileInputStream 吗?

java - 在Java中从double转换为float

c - 从链接列表保存到文件并将其加载回来

file - 获取目录中所有文件的列表(递归)

c - 文件指针在传递给函数时表现不同。为什么?