Class PDFSecurityHandler
- java.lang.Object
- 
- com.inductiveautomation.rm.pdf.reader.PDFSecurityHandler
 
- 
- Direct Known Subclasses:
- PDFEncryptor
 
 public class PDFSecurityHandler extends java.lang.ObjectImplementation of the Adobe Standard security handler using the Sun security extensions for md5 & rc4.
- 
- 
Field SummaryFields Modifier and Type Field Description static intACCESSABILITY_EXTRACTS_ALLOWEDstatic intADD_ANNOTATIONS_ALLOWEDstatic intASSEMBLE_DOCUMENT_ALLOWEDstatic intEXTRACT_TEXT_AND_IMAGES_ALLOWEDstatic intFILL_IN_FORMS_ALLOWEDstatic intMAXIMUM_RESOLUTION_PRINTING_ALLOWEDstatic intMODIFICATIONS_ALLOWEDstatic intPRINTING_ALLOWED
 - 
Constructor SummaryConstructors Constructor Description PDFSecurityHandler()
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidarcfour_decrypt(byte[] inout)decrypt using the cached encryption key.java.lang.ObjectdecryptDeep(java.lang.Object o)Decrypt.java.lang.ObjectdecryptObject(java.lang.Object o, int objNum, int generationNum)Decrypt strings & streams using the algorithm from the encryption dictionary.static byte[]getBytesForEncryptionEntry(java.util.Map encDict, java.lang.String key)Similar to, but not exactly like normal string escape.byte[]getEncryptionKey(byte[] oEntry, java.lang.String uPass, int keyLen)Uses algorithm 3.2 from pdf spec to generate a key from the file.byte[]getEncryptionKey(java.util.Map encrypt, java.util.List fileID, java.lang.String uPass)Gets the key length and algorithm from the dictionary and creats the keystatic PDFSecurityHandlergetInstance(java.util.Map encryptionDict, java.util.List fileID, java.lang.String pdfversion)Returns an instance of the appropriate PDFSecurityHandler subclass.java.lang.StringgetOwnerPasswordEntry(java.lang.String ownerP, java.lang.String userP)Returns the string corresponding to the /O entry.byte[]getOwnerPasswordEntryBytes(java.lang.String ownerP, java.lang.String userP)For encryption - generate a /O encryption entry for an encryption dictionary (from Algorithm 3.3 of the spec) This routine uses Revision 3 of the algorithm and 128 bit keys.static java.lang.StringgetPDFStringForBytes(byte[] buf)Inverse of abovejava.lang.StringgetUserPasswordEntry()Returns the string corresponding to the /U entry.byte[]getUserPasswordEntryBytes()Return User password entry bytes.voidinit(java.util.Map encryptDict, java.util.List fileID, java.lang.String pdfversion, java.lang.String uPass)Main security handler initialization.static voidmain(java.lang.String[] args)Testing.voidsetEncryptionParameters(byte[] fileID, java.lang.String ownerP, java.lang.String userP, int permissionFlags)Initialization for encryption.voidstartDecrypt(int objNum, int generationNum)Create encryption key for given object numbers and cache it for recursive invocations of decryptDeep().
 
- 
- 
- 
Field Detail- 
PRINTING_ALLOWEDpublic static final int PRINTING_ALLOWED - See Also:
- Constant Field Values
 
 - 
MODIFICATIONS_ALLOWEDpublic static final int MODIFICATIONS_ALLOWED - See Also:
- Constant Field Values
 
 - 
EXTRACT_TEXT_AND_IMAGES_ALLOWEDpublic static final int EXTRACT_TEXT_AND_IMAGES_ALLOWED - See Also:
- Constant Field Values
 
 - 
ADD_ANNOTATIONS_ALLOWEDpublic static final int ADD_ANNOTATIONS_ALLOWED - See Also:
- Constant Field Values
 
 - 
FILL_IN_FORMS_ALLOWEDpublic static final int FILL_IN_FORMS_ALLOWED - See Also:
- Constant Field Values
 
 - 
ACCESSABILITY_EXTRACTS_ALLOWEDpublic static final int ACCESSABILITY_EXTRACTS_ALLOWED - See Also:
- Constant Field Values
 
 - 
ASSEMBLE_DOCUMENT_ALLOWEDpublic static final int ASSEMBLE_DOCUMENT_ALLOWED - See Also:
- Constant Field Values
 
 - 
MAXIMUM_RESOLUTION_PRINTING_ALLOWEDpublic static final int MAXIMUM_RESOLUTION_PRINTING_ALLOWED - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
getInstancepublic static PDFSecurityHandler getInstance(java.util.Map encryptionDict, java.util.List fileID, java.lang.String pdfversion) Returns an instance of the appropriate PDFSecurityHandler subclass. Since any number of different security handlers can be used in pdf, callers should use this method rather than instantiating a handler directly. This also does authentication with the handler, possibly raising a panel to ask for passwords, keys, etc.
 - 
initpublic void init(java.util.Map encryptDict, java.util.List fileID, java.lang.String pdfversion, java.lang.String uPass) throws com.inductiveautomation.rm.pdf.reader.PDFSecurityHandler.PDFBadPasswordExceptionMain security handler initialization. Calculates everything necessary to decrypt the pdf objects and performs authorization if necessary.- Throws:
- com.inductiveautomation.rm.pdf.reader.PDFSecurityHandler.PDFBadPasswordException
 
 - 
setEncryptionParameterspublic void setEncryptionParameters(byte[] fileID, java.lang.String ownerP, java.lang.String userP, int permissionFlags)Initialization for encryption. Sets parameters to revision=3, 128 bit keys.
 - 
getEncryptionKeypublic byte[] getEncryptionKey(java.util.Map encrypt, java.util.List fileID, java.lang.String uPass)Gets the key length and algorithm from the dictionary and creats the key
 - 
getEncryptionKeypublic byte[] getEncryptionKey(byte[] oEntry, java.lang.String uPass, int keyLen)Uses algorithm 3.2 from pdf spec to generate a key from the file.
 - 
getUserPasswordEntrypublic java.lang.String getUserPasswordEntry() Returns the string corresponding to the /U entry. The encryption key is assumed to be calculated already.
 - 
getOwnerPasswordEntrypublic java.lang.String getOwnerPasswordEntry(java.lang.String ownerP, java.lang.String userP)Returns the string corresponding to the /O entry.
 - 
getUserPasswordEntryBytespublic byte[] getUserPasswordEntryBytes() Return User password entry bytes.
 - 
getOwnerPasswordEntryBytespublic byte[] getOwnerPasswordEntryBytes(java.lang.String ownerP, java.lang.String userP)For encryption - generate a /O encryption entry for an encryption dictionary (from Algorithm 3.3 of the spec) This routine uses Revision 3 of the algorithm and 128 bit keys.
 - 
decryptObjectpublic java.lang.Object decryptObject(java.lang.Object o, int objNum, int generationNum)Decrypt strings & streams using the algorithm from the encryption dictionary.
 - 
decryptDeeppublic java.lang.Object decryptDeep(java.lang.Object o) Decrypt.
 - 
startDecryptpublic void startDecrypt(int objNum, int generationNum)Create encryption key for given object numbers and cache it for recursive invocations of decryptDeep().
 - 
getBytesForEncryptionEntrypublic static byte[] getBytesForEncryptionEntry(java.util.Map encDict, java.lang.String key)Similar to, but not exactly like normal string escape.
 - 
getPDFStringForBytespublic static java.lang.String getPDFStringForBytes(byte[] buf) Inverse of above
 - 
arcfour_decryptpublic void arcfour_decrypt(byte[] inout) decrypt using the cached encryption key.
 - 
mainpublic static void main(java.lang.String[] args) throws java.io.IOExceptionTesting.- Throws:
- java.io.IOException
 
 
- 
 
-