Discuss this help topic in SecureBlackbox Forum

TElPKCS11NotificationFlag

Declared in     


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


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

Declaration

[C#/Java]
    TElPKCS11NotificationFlag = int;
        const int nfNone = 0;
        const int nfSurrender = 1;

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

[Pascal]
    TElPKCS11NotificationFlag = (nfNone, nfSurrender);

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

Description

Possible values:


Declared in

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

Discuss this help topic in SecureBlackbox Forum