Discuss this help topic in SecureBlackbox Forum
Defines possible statuses of user that logs into the token.
Declaration
[C#/Java]
TElPKCS11UserType = int;
const int utSecurityOfficer = 0;
const int utUser = 1;
[VB.NET]
TElPKCS11UserType As Integer
Const utSecurityOfficer As Integer = 0
Const utUser As Integer = 1
[Pascal]
TElPKCS11UserType = (utSecurityOfficer, utUser);
[C++]
typedef uint8_t TElPKCS11UserTypeRaw;
typedef enum { utSecurityOfficer = 0, utUser = 1 } TElPKCS11UserType;
Description
Possible values:
Declared in
.NET:
- Namespace: SBPKCS11Base
- Assembly: SecureBlackbox.PKI
VCL:Java:
- Package: SecureBlackbox.PKI.jar
C++:
Discuss this help topic in SecureBlackbox Forum