All Questions
Tagged with badpaddingexception pdfbox
1 question
0
votes
1
answer
875
views
BadPaddingException when decrypting with PDFBox
In the past, I have tried to decrypt PDFs using PDFBox using the following code:
if (doc.isEncrypted()){
doc.openProtection(new StandardDecryptionMaterial(password));
doc....