Discuss this help topic in SecureBlackbox Forum

TSBCRLReasonFlags

Declared in     See also     


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


Declaration

[C#]
    TSBCRLReasonFlags = int;
        const int rfUnspecified = 1;
        const int rfKeyCompromise = 2;
        const int rfCACompromise = 4;
        const int rfAffiliationChanged = 8;
        const int rfSuperseded = 16;
        const int rfCessationOfOperation = 32;
        const int rfCertificateHold = 64;
        const int rfObsolete1 = 128;
        const int rfRemoveFromCRL = 256;
        const int rfPrivilegeWithdrawn = 512;
        const int rfAACompromise = 1024;

[VB.NET]
    TSBCRLReasonFlags As Integer
        Const rfUnspecified As Integer = 1
        Const rfKeyCompromise As Integer = 2
        Const rfCACompromise As Integer = 4
        Const rfAffiliationChanged As Integer = 8
        Const rfSuperseded As Integer = 16
        Const rfCessationOfOperation As Integer = 32
        Const rfCertificateHold As Integer = 64
        Const rfObsolete1 As Integer = 128
        Const rfRemoveFromCRL As Integer = 256
        Const rfPrivilegeWithdrawn As Integer = 512
        Const rfAACompromise As Integer = 1024

[Pascal]
    under development

[C++]
    typedef uint8_t TSBCRLReasonFlagRaw;
    typedef enum { rfUnspecified = 0, rfKeyCompromise = 1, rfCACompromise = 2, rfAffiliationChanged = 3, rfSuperseded = 4, rfCessationOfOperation = 5, rfCertificateHold = 6, rfObsolete1 = 7, rfRemoveFromCRL = 8, rfPrivilegeWithdrawn = 9, rfAACompromise = 10 } TSBCRLReasonFlag;
    
    typedef uint32_t TSBCRLReasonFlagsRaw;
    typedef enum { f_rfUnspecified = 1, f_rfKeyCompromise = 2, f_rfCACompromise = 4, f_rfAffiliationChanged = 8, f_rfSuperseded = 16, f_rfCessationOfOperation = 32, f_rfCertificateHold = 64, f_rfObsolete1 = 128, f_rfRemoveFromCRL = 256, f_rfPrivilegeWithdrawn = 512, f_rfAACompromise = 1024 } TSBCRLReasonFlags;

[PHP]
    class TSBCRLReasonFlags extends TSBBaseEnum {
        const rfUnspecified = 1;
        const rfKeyCompromise = 2;
        const rfCACompromise = 4;
        const rfAffiliationChanged = 8;
        const rfSuperseded = 16;
        const rfCessationOfOperation = 32;
        const rfCertificateHold = 64;
        const rfObsolete1 = 128;
        const rfRemoveFromCRL = 256;
        const rfPrivilegeWithdrawn = 512;
        const rfAACompromise = 1024;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBX509Ext
  • Assembly: SecureBlackbox...
VCL:
  • Unit: SBX509Ext
Java:
  • Package: SecureBlackbox...jar
C++:
  • sbx509ext.h

See also:     TSBCRLReasonFlag    

Discuss this help topic in SecureBlackbox Forum