用Java解密openssl河豚

我有一个远程系统使用河豚加密向我发送经过openssl命令行程序加密的数据.

具体来说,正在运行的命令是:

openssl enc -blowfish -a -salt -in original.txt -out encrypted.txt -pass pass:secret

对于输入,这是一个测试.产生U2FsdGVkX19bSsC3dXTOYssoOK5L3THkhXgiB7X1Trv6SaVO2TGz0g ==

我正在尝试使用以下代码在Java的另一端解密此内容.

// requires commons-io and commons-codec
public void testDecryption() throws Exception {
    File encryptedFile = new File("encrypted.txt");
    String password = "secret";

    byte[] base64EncryptedBytes = FileUtils.readFileToByteArray(encryptedFile);
    byte[] encryptedBytes = new Base64().decode(base64EncryptedBytes);

    SecretKeySpec blowfishKey = new SecretKeySpec(password.getBytes("ASCII"), "Blowfish");
    Cipher blowfishCipher = Cipher.getInstance("Blowfish/ECB/NoPadding");
    blowfishCipher.init(Cipher.DECRYPT_MODE, blowfishKey);
    byte[] decryptedContent = blowfishCipher.doFinal(encryptedBytes);

    System.out.println(new String(decryptedContent));
}

而不是当前产生的原始消息…

êõïÖ¶M≥ O]¢∞;Z<HVÖ_’˚h‘:O›c=w◊®zÉ9˘

我究竟做错了什么?

一些可能的理论

> Blowfish / ECB / NoPadding不是要使用的正确密码实例.我尝试了http://docs.oracle.com/javase/1.4.2/docs/guide/security/jce/JCERefGuide.html#AppA列出的模式和填充的每种组合,但OAEPWith [digest] And [mgf] Padding padding失败.

>我已经注意到,如果我使用openssl enc -d -blowfish -a -incrypted.txt从命令行解密文件,则密码提示将标记为“ bf-cbc”,这表明是Blowfish / CBC而不是Blowfish / ECB ,但是如果我使用它,则会得到java.security.InvalidKeyException:参数缺少异常,但是我不确定我可以添加什么参数.

>应该以某种方式转换在命令行上给定的密码,否则getBytes(“ ASCII”)不正确.
>盐的Java代码中需要一些其他处理.

解决方法:

经过大量搜索后,我发现not-yet-commons-ssl似乎为执行此操作提供了一种方法…

byte[] decrypted = OpenSSL.decrypt("blowfish", password.toCharArray(), base64EncryptedBytes);

当我有时间的时候,我将深入研究他们的代码,并确切地了解正在做什么.同时,看起来OpenSSL.java是开始的地方.

上一篇:php-安全地为api存储密码而不对其进行加密


下一篇:使用Python进行RSA加密