代码之家  ›  专栏  ›  技术社区  ›  Jin Kwon

如何使用BouncyCastle API处理Rijndael-256?

  •  0
  • Jin Kwon  · 技术社区  · 6 年前

    一个古代的PHP家伙为 Rijndael-256 (!AES256) / ECB / NoPadding .

    我试过了。

    PaddedBufferedBlockCipher cipher = new PaddedBufferedBlockCipher(
            new RijndaelEngine(256), new ZeroBytePadding());
    cipher.init(encrypt, new KeyParameter(Arrays.copyOf(KEY.getBytes(UTF_8), 16)));
    byte[] source = supplier.get();
    byte[] target = new byte[cipher.getOutputSize(source.length)];
    int offset = cipher.processBytes(source, 0, source.length, target, 0);
    cipher.doFinal(target, offset);
    

    但是加密总是添加填充。是的,我知道我用过 ZeroBytePadding .

    我怎么解决这个问题?我找不到任何好的推荐信。

    2 回复  |  直到 6 年前
        1
  •  2
  •   Jin Kwon    6 年前

    如果加密确实没有添加填充,那么只需将密码初始化为:

    new BufferedBlockCipher(new RijndaelEngine(256))
    

    请注意 doFinal 呼叫将引发 DataLengthException 如果您试图解密的数据实际上不是块对齐的。

    顺便说一句,检查 落叶松 (输出了多少字节),因为 getOutputSize 被允许高估。

        2
  •  0
  •   Jin Kwon    6 年前

    我正在根据已接受的答案共享我的(可能的)解决方案。

    BufferedBlockCipher cipher =
        new BufferedBlockCipher(new RijndaelEngine(256));
    cipher.init(encrypt, new KeyParameter(Arrays.copyOf(KEY.getBytes(UTF_8), 16)));
    byte[] source = supplier.get();
    byte[] target = new byte[cipher.getOutputSize(source.length)];
    int offset = cipher.processBytes(source, 0, source.length, target, 0);
    try {
        offset += cipher.doFinal(target, offset);
    } catch (InvalidCipherTextException icte) {
        // if padding is expected and not found
        //throw new RuntimeException(icte);
    }
    target = Arrays.copyOf(target, offset);
    

    不过,我不确定。