Name | Description | |
---|---|---|
StandardSecurityHandlerRev6 Constructor | Initialize a new instance of the StandardSecurityHandlerRev6 class. |
The following tables list the members exposed by StandardSecurityHandlerRev6.
Name | Description | |
---|---|---|
StandardSecurityHandlerRev6 Constructor | Initialize a new instance of the StandardSecurityHandlerRev6 class. |
Name | Description | |
---|---|---|
AccessType | Gets the access type granted by this StandardSecurityHandler, or null. This property is initialized when a document is loaded. (Inherited from GrapeCity.Documents.Pdf.Security.StandardSecurityHandler) | |
CopyContent | Gets or sets a value indicating whether a document's content can be copied or extracted. (Inherited from GrapeCity.Documents.Pdf.Security.StandardSecurityHandlerRev3) | |
CopyContentAccessibility | Gets or sets a value used to determine whether content could be extracted for the purposes of accessibility.
Note however that this restriction has been deprecated in PDF 2.0, which states that PDF readers shall ignore this bit. The default value of this property is true, and it should not be changed. (Inherited from GrapeCity.Documents.Pdf.Security.StandardSecurityHandlerRev3) | |
CopyContentPermissions | Gets or sets a value controlling how a document's content can be copied or extracted. (Inherited from GrapeCity.Documents.Pdf.Security.StandardSecurityHandlerRev3) | |
EditingPermissions | Gets or sets a value controlling how a document can be edited. (Inherited from GrapeCity.Documents.Pdf.Security.StandardSecurityHandlerRev3) | |
EncryptionAlgorithm | Gets or sets the encryption algorithm to use. (Inherited from GrapeCity.Documents.Pdf.Security.StandardSecurityHandlerRev4) | |
EncryptionKeyLength | Gets or sets the length of the encryption key, in bits. The value must be a multiple of 8, in the range from 40 to 128.
IMPORTANT NOTE: StandardSecurityHandlerRev4 can use RC4 or AES encryption, and according to specification, with RC4 any key length in the range from 40 to 128 can be used. But tests show that current/recent versions of Adobe Acrobat Reader DC and Adobe Acrobat Pro DC cannot handle files encrypted with RC4 if the key length is not equal to 128. Older versions of Acrobat Reader handle such files without issues, so it looks like a bug in the newer versions of Acrobat Reader. So it is recommended that StandardSecurityHandlerRev3 is used in cases when RC4 encryption with key length other than 128 is required. (Inherited from GrapeCity.Documents.Pdf.Security.StandardSecurityHandlerRev3) | |
EncryptMetadata | Gets or sets a value indicating whether the document-level metadata stream is to be encrypted. (Inherited from GrapeCity.Documents.Pdf.Security.StandardSecurityHandlerRev4) | |
EncryptStreams | Gets or sets a value indicating whether streams should be encrypted. (Inherited from GrapeCity.Documents.Pdf.Security.StandardSecurityHandlerRev4) | |
EncryptStrings | Gets or sets a value indicating whether strings should be encrypted. (Inherited from GrapeCity.Documents.Pdf.Security.StandardSecurityHandlerRev4) | |
HasOwnerPassword | Gets a value indicating whether the PDF has an owner password that is required to edit the document.
This property is initialized when the document is loaded. Note that a document may be encrypted with an empty password, in which case HasUserPassword and HasOwnerPassword properties return false. Note also that, according to the PDF specification, if an owner password is not specified, then the user password should be used. GcPdf follows this rule, so if a PDF that was created using GcPdf with only a user password is loaded into GrapeCity.Documents.Pdf.GcPdfDocument, its AccessType will be AccessType.Owner, HasOwnerPassword will be true and HasUserPassword will also be true. (Inherited from GrapeCity.Documents.Pdf.Security.StandardSecurityHandler) | |
HasUserPassword | Gets a value indicating whether the PDF has a user password that is required to open the document.
This property is initialized when the document is loaded. Note that a document may be encrypted with an empty password, in which case HasUserPassword and HasOwnerPassword properties return false. Note also that, according to the PDF specification, if an owner password is not specified, then the user password should be used. GcPdf follows this rule, so if a PDF that was created using GcPdf with only a user password is loaded into GrapeCity.Documents.Pdf.GcPdfDocument, its AccessType will be AccessType.Owner, HasOwnerPassword will be true and HasUserPassword will also be true. (Inherited from GrapeCity.Documents.Pdf.Security.StandardSecurityHandler) | |
ObjID | Gets the PDF object ID. (Inherited from GrapeCity.Documents.Pdf.Wrappers.PdfWrapperBase) | |
OwnerPassword | Gets or sets the password required to change permissions of a PDF document as a string.
The two properties OwnerPassword and OwnerPasswordBytes allow to define the password as a string or as an array of bytes. According to the PDF specification, a string password should be converted to an array of bytes using the system code page (if the standard security handler with revision 4 or less is used). In some environments the system code page is unavailable, so GcPdf cannot perform this conversion. If the password string only contains ASCII chars, this does not present a problem. But if the password string contains non-ASCII Unicode characters, it is up to the developer to perform the conversion and set the password using this property. (Inherited from GrapeCity.Documents.Pdf.Security.StandardSecurityHandler) | |
OwnerPasswordBytes | Gets or sets the password required to change permissions of a PDF document as a byte array.
The two properties OwnerPassword and OwnerPasswordBytes allow to define the password as a string or as an array of bytes. According to the PDF specification, a string password should be converted to an array of bytes using the system code page (if the standard security handler with revision 4 or less is used). In some environments the system code page is unavailable, so GcPdf cannot perform this conversion. If the password string only contains ASCII chars, this does not present a problem. But if the password string contains non-ASCII Unicode characters, it is up to the developer to perform the conversion and set the password using this property. (Inherited from GrapeCity.Documents.Pdf.Security.StandardSecurityHandler) | |
PasswordMatches | Gets a combination of flags that indicate how the password specified when loading the PDF matches the document's User and Owner passwords. (Inherited from GrapeCity.Documents.Pdf.Security.StandardSecurityHandler) | |
PdfDict | Gets the underlying GrapeCity.Documents.Pdf.Spec.IPdfDict. (Inherited from GrapeCity.Documents.Pdf.Wrappers.PdfDictWrapper) | |
PdfObject | Gets the underlying GrapeCity.Documents.Pdf.Spec.IPdfObject. (Inherited from GrapeCity.Documents.Pdf.Wrappers.PdfWrapper<IPdfDict>) | |
PrintingPermissions | Gets or sets a value controlling how a document can be printed. (Inherited from GrapeCity.Documents.Pdf.Security.StandardSecurityHandlerRev3) | |
Revision | Gets the revision of this StandardSecurityHandler. (Inherited from GrapeCity.Documents.Pdf.Security.StandardSecurityHandler) | |
UserPassword | Gets or sets the password required to open a PDF document as a string.
The two properties UserPassword and UserPasswordBytes allow to define the password as a string or as an array of bytes. According to the PDF specification, a string password should be converted to an array of bytes using the system code page (if the standard security handler with revision 4 or less is used). In some environments the system code page is unavailable, so GcPdf cannot perform this conversion. If the password string only contains ASCII chars, this does not present a problem. But if the password string contains non-ASCII Unicode characters, it is up to the developer to perform the conversion and set the password using UserPasswordBytes. (Inherited from GrapeCity.Documents.Pdf.Security.StandardSecurityHandler) | |
UserPasswordBytes | Gets or sets the password required to open a PDF document as a byte array.
The two properties UserPassword and UserPasswordBytes allow to define the password as a string or as an array of bytes. According to the PDF specification, a string password should be converted to an array of bytes using the system code page (if the standard security handler with revision 4 or less is used). In some environments the system code page is unavailable, so GcPdf cannot perform this conversion. If the password string only contains ASCII chars, this does not present a problem. But if the password string contains non-ASCII Unicode characters, it is up to the developer to perform the conversion and set the password using this property. (Inherited from GrapeCity.Documents.Pdf.Security.StandardSecurityHandler) |