Discuss this help topic in SecureBlackbox Forum
This type specifies various PAdES options.
Declaration
[C#/Java]
TSBPAdESOption = int;
const int poUseSigningCertificateV2 = 1;
const int poIncludeAllRevInfoToDSS = 2;
const int poCreateVRIDictionaries = 4;
const int poUseUndefBEREncoding = 8;
const int poTolerateMissingSigningCertificate = 16;
[VB.NET]
TSBPAdESOption As Integer
Const poUseSigningCertificateV2 As Integer = 1
Const poIncludeAllRevInfoToDSS As Integer = 2
Const poCreateVRIDictionaries As Integer = 4
Const poUseUndefBEREncoding As Integer = 8
Const poTolerateMissingSigningCertificate As Integer = 16
[Pascal]
TSBPAdESOption = (poUseSigningCertificateV2, poIncludeAllRevInfoToDSS, poCreateVRIDictionaries, poUseUndefBEREncoding, poTolerateMissingSigningCertificate);
[C++]
typedef uint8_t TSBPAdESOptionRaw;
typedef enum { poUseSigningCertificateV2 = 0, poIncludeAllRevInfoToDSS = 1, poCreateVRIDictionaries = 2, poUseUndefBEREncoding = 3, poTolerateMissingSigningCertificate = 4 } TSBPAdESOption;
typedef uint32_t TSBPAdESOptionsRaw;
typedef enum { f_poUseSigningCertificateV2 = 1, f_poIncludeAllRevInfoToDSS = 2, f_poCreateVRIDictionaries = 4, f_poUseUndefBEREncoding = 8, f_poTolerateMissingSigningCertificate = 16 } TSBPAdESOptions;
Description
Possible values:
Declared in
.NET:
- Namespace: PKIPDF
- Assembly: SecureBlackbox.PDF
VCL:Java:
- Package: SecureBlackbox.PDF.jar
C++:
Discuss this help topic in SecureBlackbox Forum