Uses of Class
org.apache.pdfbox.pdmodel.encryption.SecurityHandler
Packages that use SecurityHandler
Package
Description
The pdfparser package contains classes to parse PDF documents and objects within the document.
The encryption package will handle the PDF document security handlers and the functionality of pluggable security handlers.
-
Uses of SecurityHandler in org.apache.pdfbox.pdfparser
Fields in org.apache.pdfbox.pdfparser declared as SecurityHandlerModifier and TypeFieldDescriptionprotected SecurityHandler
COSParser.securityHandler
The security handler. -
Uses of SecurityHandler in org.apache.pdfbox.pdmodel.encryption
Subclasses of SecurityHandler in org.apache.pdfbox.pdmodel.encryptionModifier and TypeClassDescriptionfinal class
This class implements the public key security handler described in the PDF specification.final class
The standard security handler.Fields in org.apache.pdfbox.pdmodel.encryption declared as SecurityHandlerFields in org.apache.pdfbox.pdmodel.encryption with type parameters of type SecurityHandlerModifier and TypeFieldDescriptionprivate final Map<String,
Class<? extends SecurityHandler>> SecurityHandlerFactory.nameToHandler
private final Map<Class<? extends ProtectionPolicy>,
Class<? extends SecurityHandler>> SecurityHandlerFactory.policyToHandler
Methods in org.apache.pdfbox.pdmodel.encryption that return SecurityHandlerModifier and TypeMethodDescriptionPDEncryption.getSecurityHandler()
Returns the security handler specified in the dictionary's Filter entry.private SecurityHandler
SecurityHandlerFactory.newSecurityHandler
(Class<? extends SecurityHandler> handlerClass, Class<?>[] argsClasses, Object[] args) SecurityHandlerFactory.newSecurityHandlerForFilter
(String name) Returns a new security handler for the given Filter name, or null none is available.SecurityHandlerFactory.newSecurityHandlerForPolicy
(ProtectionPolicy policy) Returns a new security handler for the given protection policy, or null none is available.Methods in org.apache.pdfbox.pdmodel.encryption with parameters of type SecurityHandlerModifier and TypeMethodDescriptionvoid
PDEncryption.setSecurityHandler
(SecurityHandler securityHandler) Sets the security handler used in this encryption dictionaryMethod parameters in org.apache.pdfbox.pdmodel.encryption with type arguments of type SecurityHandlerModifier and TypeMethodDescriptionprivate SecurityHandler
SecurityHandlerFactory.newSecurityHandler
(Class<? extends SecurityHandler> handlerClass, Class<?>[] argsClasses, Object[] args) void
SecurityHandlerFactory.registerHandler
(String name, Class<? extends SecurityHandler> securityHandler, Class<? extends ProtectionPolicy> protectionPolicy) Registers a security handler.