Package | Description |
---|---|
org.apache.pdfbox.pdfparser |
The pdfparser package contains classes to parse PDF documents and objects within the document.
|
org.apache.pdfbox.pdmodel |
The PDModel package represents a high level API for creating and manipulating PDF documents.
|
org.apache.pdfbox.pdmodel.encryption |
The encryption package will handle the PDF document security handlers and the functionality of pluggable security handlers.
|
Modifier and Type | Field and Description |
---|---|
private PDEncryption |
COSParser.encryption |
Modifier and Type | Method and Description |
---|---|
PDEncryption |
COSParser.getEncryption()
This will get the encryption dictionary.
|
Modifier and Type | Field and Description |
---|---|
private PDEncryption |
PDDocument.encryption |
Modifier and Type | Method and Description |
---|---|
PDEncryption |
PDDocument.getEncryption()
This will get the encryption dictionary for this document.
|
Modifier and Type | Method and Description |
---|---|
void |
PDDocument.setEncryptionDictionary(PDEncryption encryption)
This will set the encryption dictionary for this document.
|
Modifier and Type | Class and Description |
---|---|
class |
PDEncryptionDictionary
Deprecated.
Use
PDEncryption instead |
Modifier and Type | Method and Description |
---|---|
private void |
StandardSecurityHandler.prepareEncryptionDictAES(PDEncryption encryptionDictionary,
COSName aesVName) |
private void |
PublicKeySecurityHandler.prepareEncryptionDictAES(PDEncryption encryptionDictionary,
COSName aesVName,
byte[][] recipients) |
private void |
StandardSecurityHandler.prepareEncryptionDictRev2345(java.lang.String ownerPassword,
java.lang.String userPassword,
PDEncryption encryptionDictionary,
int permissionInt,
PDDocument document,
int revision,
int length) |
private void |
StandardSecurityHandler.prepareEncryptionDictRev6(java.lang.String ownerPassword,
java.lang.String userPassword,
PDEncryption encryptionDictionary,
int permissionInt) |
abstract void |
SecurityHandler.prepareForDecryption(PDEncryption encryption,
COSArray documentIDArray,
DecryptionMaterial decryptionMaterial)
Prepares everything to decrypt the document.
|
void |
StandardSecurityHandler.prepareForDecryption(PDEncryption encryption,
COSArray documentIDArray,
DecryptionMaterial decryptionMaterial)
Prepares everything to decrypt the document.
|
void |
PublicKeySecurityHandler.prepareForDecryption(PDEncryption encryption,
COSArray documentIDArray,
DecryptionMaterial decryptionMaterial)
Prepares everything to decrypt the document.
|
private void |
StandardSecurityHandler.validatePerms(PDEncryption encryption,
int dicPermissions,
boolean encryptMetadata) |