使用PDFBox解密时BadPaddingException

时间:2014-11-17 00:24:31

标签: pdfbox badpaddingexception

过去,我尝试使用PDFBox使用以下代码解密PDF:

if (doc.isEncrypted()){
    doc.openProtection(new StandardDecryptionMaterial(password));
    doc.setAllSecurityToBeRemoved(true);
}

(请注意,我不使用doc.decrypt(password),因为the Javadoc for decrypt()表示应该使用openProtection()代替,但为什么它不仅仅是我已经弃用了。)

无论如何,这已经很好了很长一段时间了。但是,最近我似乎得到了以下例外:

java.io.IOException: javax.crypto.BadPaddingException: Given final block not properly padded
        at javax.crypto.CipherInputStream.getMoreData(CipherInputStream.java:118)
        at javax.crypto.CipherInputStream.read(CipherInputStream.java:236)
        at javax.crypto.CipherInputStream.read(CipherInputStream.java:212)
        at org.apache.pdfbox.pdmodel.encryption.SecurityHandler.encryptData(SecurityHandler.java:316)
        at org.apache.pdfbox.pdmodel.encryption.SecurityHandler.decryptStream(SecurityHandler.java:421)
        at org.apache.pdfbox.pdmodel.encryption.SecurityHandler.decrypt(SecurityHandler.java:390)
        at org.apache.pdfbox.pdmodel.encryption.SecurityHandler.decryptObject(SecurityHandler.java:365)
        at org.apache.pdfbox.pdmodel.encryption.SecurityHandler.proceedDecryption(SecurityHandler.java:196)
        at org.apache.pdfbox.pdmodel.encryption.StandardSecurityHandler.decryptDocument(StandardSecurityHandler.java:158)
        at org.apache.pdfbox.pdmodel.PDDocument.openProtection(PDDocument.java:1598)
            <Stack trace continues with my call to openProtection()>

如何解决此问题?

1 个答案:

答案 0 :(得分:1)

这是a known issue,它似乎是由于Java更新而引入的。在撰写本文时,对此的修复程序正在审核中包含在1.8.8版本中,因此只需升级到1.8.8或更高版本,此问题就会消失。