java - java中基于密码的加密/解密: fails to decrypt the file even though the password is identical

标签 java encryption

我编写了以下代码用于文本文件加密和解密。

加密过程工作正常,但我无法解密创建的文件。由于某种原因,即使我使用相同的密码、相同的长度和相同的填充,解密输出也是与原始文件不同的编码文件...

在其他尝试中,我在单独运行加密和解密时失败了。但现在它们都在相继运行(即使它们使用不同的 key 规范,这是原因吗?如果是的话 - 我怎样才能绕过它?)

public static void main(String[] args) throws Exception {
    encrypt("samplePassword", new FileInputStream("file.txt"), new FileOutputStream("enc-file.txt"));
    decrypt("samplePassword", new FileInputStream("enc-file.txt"), new FileOutputStream("file-from-enc.txt"));
}

public static void encrypt(String password, InputStream is, OutputStream os) throws Exception {

    SecretKeySpec keySpec = new SecretKeySpec(password(password), "TripleDES");
    Cipher cipher = Cipher.getInstance("TripleDES");
    cipher.init(Cipher.ENCRYPT_MODE, keySpec);
    byte[] buf = new byte[8096];
    os = new CipherOutputStream(os, cipher);
    int numRead = 0;
    while ((numRead = is.read(buf)) >= 0) {
        os.write(buf, 0, numRead);
    }
    os.close();
}

public static void decrypt(String password, InputStream is, OutputStream os) throws Exception {

    SecretKeySpec keySpec = new SecretKeySpec(password(password), "TripleDES");
    Cipher cipher = Cipher.getInstance("TripleDES");
    cipher.init(Cipher.ENCRYPT_MODE, keySpec);

    byte[] buf = new byte[8096];
    CipherInputStream cis = new CipherInputStream(is, cipher);
    int numRead = 0;
    while ((numRead = cis.read(buf)) >= 0) {
        os.write(buf, 0, numRead);
    }
    cis.close();
    is.close();
    os.close();
}

private static byte[] password(String password) {

    byte[] baseBytes = { (byte) 0x38, (byte) 0x5C, (byte) 0x8, (byte) 0x4C, (byte) 0x75, (byte) 0x77, (byte) 0x5B, (byte) 0x43,
            (byte) 0x1C, (byte) 0x1B, (byte) 0x38, (byte) 0x6A, (byte) 0x5, (byte) 0x0E, (byte) 0x47, (byte) 0x3F, (byte) 0x31,
            (byte) 0xF, (byte) 0xC, (byte) 0x76, (byte) 0x53, (byte) 0x67, (byte) 0x32, (byte) 0x42 };
    byte[] bytes = password.getBytes();
    int i = bytes.length;
    bytes = Arrays.copyOf(bytes, 24);
    if(i < 24){
        for(;i<24; i++){
            bytes[i] = baseBytes[i];
        }
    }
    return bytes;
}

有人可以给我提示吗?

最佳答案

乍一看,

cipher.init(Cipher.ENCRYPT_MODE, keySpec);

应该是

cipher.init(Cipher.DECRYPT_MODE, keySpec);

在解密方法中。

看看 documentation .

关于java - java中基于密码的加密/解密: fails to decrypt the file even though the password is identical,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11071975/

相关文章:

c - 加密 API 调用失败

Java Processbuilder 输出流

java - 动态场和/或人工方法

java - 如何在 Spring Boot Rest 和 Postman 中使用表单数据来保存用户?

java - 应该使用 Read committed 还是 Serializable 作为隔离级别的场景?

java - 从文件路径将位图设置为 imageview 不起作用

encryption - 初始化向量的特征

visual-studio - 防止 Visual Studio 加密文件

ssl - 尝试了解 Tor 及其与 SSL 的关系

java - 解密 TLS https 数据流量