Discuss this help topic in SecureBlackbox Forum

TElPKCS11NotificationFlag

Declared in     


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


Defines the types of notifications that Cryptoki provides to an application.

Declaration

[C#]
    TElPKCS11NotificationFlag = short;
        const short nfNone = 0;
        const short nfSurrender = 1;

[VB.NET]
    TElPKCS11NotificationFlag As Short
        Const nfNone As Short = 0
        Const nfSurrender As Short = 1

[Pascal]
    TElPKCS11NotificationFlag = (nfNone, nfSurrender);

[C++]
    typedef uint8_t TElPKCS11NotificationFlagRaw;
    typedef enum { nfNone = 0, nfSurrender = 1 } TElPKCS11NotificationFlag;

[PHP]
    class TElPKCS11NotificationFlag extends TSBBaseEnum {
        const nfNone = 0;
        const nfSurrender = 1;
    }

[Java]
    not available

Possible values

Declared in

.NET:
VCL:
  • Unit: SBPKCS11Base
Java:
  • Package: SecureBlackbox.PKI.jar
C++:
  • sbpkcs11base.h

Discuss this help topic in SecureBlackbox Forum