Discuss this help topic in SecureBlackbox Forum

TElPKCS11UserType

Declared in     See also     


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


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:
  • Unit: SBPKCS11Base
Java:
  • Package: SecureBlackbox.PKI.jar
C++:
  • sbpkcs11base.h

See also:     Login    

Discuss this help topic in SecureBlackbox Forum