PyPDF4
PyPDF4 copied to clipboard
advanced encryption
in some files I need to encrypt pdf file with 2 properties:
- opening the pdf file does not require a password at all
- making any changes (and if possible printing) would require the owner_pwd
I tried reading the source code but it seemed that this logic wont work with such code:
output_file = PdfFileWriter()
output_file.encrypt(user_pwd="", owner_pwd="password")
Hi you should have a look at this issue #88
yeah I checked that out but is it fixed on pip yet?