Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
public enum TSBPKCS11CertCategory { ccUnspecified = 0, ccTokenUser = 1, ccAuthority = 2, ccOtherEntity = 3 };
[VB.NET]
Enum TSBPKCS11CertCategory
ccUnspecified = 0
ccTokenUser = 1
ccAuthority = 2
ccOtherEntity = 3
End Enum
[Pascal]
under development
[C++]
typedef uint8_t TSBPKCS11CertCategoryRaw;
typedef enum { ccUnspecified = 0, ccTokenUser = 1, ccAuthority = 2, ccOtherEntity = 3 } TSBPKCS11CertCategory;
[PHP]
class TSBPKCS11CertCategory extends TSBBaseEnum {
const ccUnspecified = 0;
const ccTokenUser = 1;
const ccAuthority = 2;
const ccOtherEntity = 3;
}
[Java]
public enum TSBPKCS11CertCategory { ccUnspecified, ccTokenUser, ccAuthority, ccOtherEntity }
Possible values
Declared in
.NET:
- Namespace: SBPKCS11Base
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum