iText 9.1.0 API
|
The class representing various properties used to read PDF documents. More...
Public Member Functions |
|
ReaderProperties () | |
Creates an instance of ReaderProperties. More... |
|
virtual iText.Kernel.Pdf.ReaderProperties | SetPassword (byte[] password) |
Defines the password which will be used if the document is encrypted with standard encryption. More... |
|
virtual iText.Kernel.Pdf.ReaderProperties | SetPublicKeySecurityParams (IX509Certificate certificate, IPrivateKey certificateKey) |
Defines the certificate which will be used if the document is encrypted with public key encryption (see Pdf 1.7 specification, 7.6.4. Public-Key Security Handlers) More... |
|
virtual iText.Kernel.Pdf.ReaderProperties | SetPublicKeySecurityParams (IX509Certificate certificate) |
Defines the certificate which will be used if the document is encrypted with public key encryption (see Pdf 1.7 specification, 7.6.4. Public-Key Security Handlers) More... |
|
virtual iText.Kernel.Pdf.ReaderProperties | SetMemoryLimitsAwareHandler (MemoryLimitsAwareHandler memoryLimitsAwareHandler) |
Sets the memory handler which will be used to handle decompressed PDF streams. More... |
|
Package Attributes |
|
byte[] | password |
IPrivateKey | certificateKey |
IX509Certificate | certificate |
MemoryLimitsAwareHandler | memoryLimitsAwareHandler |
The class representing various properties used to read PDF documents.
|
inline |
Creates an instance of ReaderProperties.
|
inlinevirtual |
Sets the memory handler which will be used to handle decompressed PDF streams.
memoryLimitsAwareHandler | the memory handler which will be used to handle decompressed PDF streams |
|
inlinevirtual |
Defines the password which will be used if the document is encrypted with standard encryption.
Defines the password which will be used if the document is encrypted with standard encryption. This could be either user or owner password.
password | the password to use in order to open the document |
|
inlinevirtual |
Defines the certificate which will be used if the document is encrypted with public key encryption (see Pdf 1.7 specification, 7.6.4. Public-Key Security Handlers)
certificate | the recipient iText.Commons.Bouncycastle.Cert.IX509Certificate , serves as recipient identifier |
|
inlinevirtual |
Defines the certificate which will be used if the document is encrypted with public key encryption (see Pdf 1.7 specification, 7.6.4. Public-Key Security Handlers)
certificate | the recipient iText.Commons.Bouncycastle.Cert.IX509Certificate , serves as recipient identifier |
certificateKey | the recipient private iText.Commons.Bouncycastle.Crypto.IPrivateKey to the certificate |