Package com.snowtide.pdf
Class EncryptionInfo
- java.lang.Object
-
- com.snowtide.pdf.EncryptionInfo
-
public class EncryptionInfo extends Object
Instances of this class provide information about the parameters used to encrypt a PDF document. The properties provided here map directly to those specified in Section 3.5 of the Adobe PDF document specification; please refer to that document for more information about what these properties mean.- Version:
- ©2004-2024 Snowtide
-
-
Constructor Summary
Constructors Constructor Description EncryptionInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getBitLength()
Returns the bit length of the key used to encrypt the document; will always be a multiple of 8, and between 40 - 128.String
getFilterName()
Returns the name of the security handler for the PDF document.String
getPdfName()
Returns the name of the PDF document that this object is associated with.String
getSubfilterName()
int
getV()
Returns the algorithm "version" used when the document was encrypted.
-
-
-
Method Detail
-
getPdfName
public String getPdfName()
Returns the name of the PDF document that this object is associated with.
-
getFilterName
public String getFilterName()
Returns the name of the security handler for the PDF document.
-
getSubfilterName
public String getSubfilterName()
-
getV
public int getV()
Returns the algorithm "version" used when the document was encrypted.
-
getBitLength
public int getBitLength()
Returns the bit length of the key used to encrypt the document; will always be a multiple of 8, and between 40 - 128.
-
-