, 2006 12:02 PM
> To: [email protected]
> Subject: [iText-questions] Reading encrypted PDF-files
> without user-password
>
> Hello iTexter,
>
> i want to make encrypted PDF-files with iText (iText
> v1.4.2, JDK 1.5.0):
>
> ...
> P
Hello iTexter,
i want to make encrypted PDF-files with iText (iText
v1.4.2, JDK 1.5.0):
...
PdfWriter writer = PdfWriter.getInstance(document, new
FileOutputStream(pdfEncrypted.pdf));
writer.setEncryption(PdfWriter.STRENGTH128BITS,
"userPW", "ownerPW", permissions);
...
My us