Discuss this help topic in SecureBlackbox Forum

TSBPAdESOptions

Declared in     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Declaration

[C#]
    TSBPAdESOptions = int;
        const int poUseSigningCertificateV2 = 1;
        const int poIncludeAllRevInfoToDSS = 2;
        const int poCreateVRIDictionaries = 4;
        const int poUseUndefBEREncoding = 8;
        const int poTolerateMissingSigningCertificate = 16;
        const int poCompressDSS = 32;

[VB.NET]
    TSBPAdESOptions 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
        Const poCompressDSS As Integer = 32

[Pascal]
    under development

[C++]
    typedef uint8_t TSBPAdESOptionRaw;
    typedef enum { poUseSigningCertificateV2 = 0, poIncludeAllRevInfoToDSS = 1, poCreateVRIDictionaries = 2, poUseUndefBEREncoding = 3, poTolerateMissingSigningCertificate = 4, poCompressDSS = 5 } TSBPAdESOption;
    
    typedef uint32_t TSBPAdESOptionsRaw;
    typedef enum { f_poUseSigningCertificateV2 = 1, f_poIncludeAllRevInfoToDSS = 2, f_poCreateVRIDictionaries = 4, f_poUseUndefBEREncoding = 8, f_poTolerateMissingSigningCertificate = 16, f_poCompressDSS = 32 } TSBPAdESOptions;

[PHP]
    class TSBPAdESOptions extends TSBBaseEnum {
        const poUseSigningCertificateV2 = 1;
        const poIncludeAllRevInfoToDSS = 2;
        const poCreateVRIDictionaries = 4;
        const poUseUndefBEREncoding = 8;
        const poTolerateMissingSigningCertificate = 16;
        const poCompressDSS = 32;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBPAdES
  • Assembly: SecureBlackbox...
VCL:
  • Unit: SBPAdES
Java:
  • Package: SecureBlackbox...jar
C++:
  • sbpades.h

See also:     TSBPAdESOption    

Discuss this help topic in SecureBlackbox Forum