Discuss this help topic in SecureBlackbox Forum
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;
}
Possible values
Declared in
.NET:VCL:Java:
- Package: SecureBlackbox.PKI.jar
C++:
Discuss this help topic in SecureBlackbox Forum