Package | Description |
---|---|
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 | Method | Description |
---|---|---|
void |
PDDocument.openProtection(DecryptionMaterial pm) |
Tries to decrypt the document in memory using the provided decryption material.
|
void |
PDDocument.protect(ProtectionPolicy pp) |
Protects the document with the protection policy pp.
|
Modifier and Type | Method | Description |
---|---|---|
SecurityHandler |
SecurityHandlersManager.getSecurityHandler(java.lang.String filterName) |
Retrieve the appropriate SecurityHandler for a the given filter name.
|
SecurityHandler |
SecurityHandlersManager.getSecurityHandler(ProtectionPolicy policy) |
Get the security handler for the protection policy.
|
void |
SecurityHandlersManager.registerHandler(java.lang.String filterName,
java.lang.Class securityHandlerClass,
java.lang.Class protectionPolicyClass) |
register a security handler.
|