I need to call the constructor of PdfReader with the interface ExternalDecryptionProcess from an inputStream or byte array.
Is it possible to add a new constructor to the PdfReader class like the following:
PdfReader(final InputStream is, Certificate certificate, final ExternalDecryptionProcess externalDecryptionProcess)
OR
PdfReader(final byte pdfIn[], Certificate certificate, final ExternalDecryptionProcess externalDecryptionProcess)
The master constructor is private so I couldn't directly call it
Thanks Jamil