Discuss this help topic in SecureBlackbox Forum

TSBPKIStatus

Declared in     


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


Defines possible statuses returned by TSP servers.

Declaration

[C#]
    TSBPKIStatus = short;
        const short psGranted = 0;
        const short psGrantedWithMods = 1;
        const short psRejection = 2;
        const short psWaiting = 3;
        const short psRevocationWarning = 4;
        const short psRevocationNotification = 5;
        const short psKeyUpdateWarning = 6;

[VB.NET]
    TSBPKIStatus As Short
        Const psGranted As Short = 0
        Const psGrantedWithMods As Short = 1
        Const psRejection As Short = 2
        Const psWaiting As Short = 3
        Const psRevocationWarning As Short = 4
        Const psRevocationNotification As Short = 5
        Const psKeyUpdateWarning As Short = 6

[Pascal]
    TSBBoxUserStatus = (psGranted, psGrantedWithMods, psRejection, psWaiting, psRevocationWarning, psRevocationNotification, psKeyUpdateWarning);

[C++]
    typedef uint8_t TSBPKIStatusRaw;
    typedef enum { psGranted = 0, psGrantedWithMods = 1, psRejection = 2, psWaiting = 3, psRevocationWarning = 4, psRevocationNotification = 5, psKeyUpdateWarning = 6 } TSBPKIStatus;

[PHP]
    class TSBPKIStatus extends TSBBaseEnum {
        const psGranted = 0;
        const psGrantedWithMods = 1;
        const psRejection = 2;
        const psWaiting = 3;
        const psRevocationWarning = 4;
        const psRevocationNotification = 5;
        const psKeyUpdateWarning = 6;
    }

[Java]
    not available

Possible values:

Declared in

.NET:
  • Namespace: SBPKICommon
  • Assembly: SecureBlackbox.PKI
VCL:
  • Unit: SBPKICommon
Java:
  • Package: SecureBlackbox.PKI.jar
C++:
  • cbpkicommon.h

Discuss this help topic in SecureBlackbox Forum