Discuss this help topic in SecureBlackbox Forum
Defines possible certification types.
Declaration
[C#]
TSBPGPUserCertificationType = short;
const short ctGeneric = 0;
const short ctPersona = 1;
const short ctCasual = 2;
const short ctPositive = 3;
[VB.NET]
TSBPGPUserCertificationType As Short
Const ctGeneric As Short = 0
Const ctPersona As Short = 1
Const ctCasual As Short = 2
Const ctPositive As Short = 3
[Pascal]
TSBPGPUserCertificationType = (ctGeneric, ctPersona, ctCasual, ctPositive);
[C++]
typedef uint8_t TSBPGPUserCertificationTypeRaw;
typedef enum { ctGeneric = 0, ctPersona = 1, ctCasual = 2, ctPositive = 3 } TSBPGPUserCertificationType;
[PHP]
class TSBPGPUserCertificationType extends TSBBaseEnum {
const ctGeneric = 0;
const ctPersona = 1;
const ctCasual = 2;
const ctPositive = 3;
}
Possible values
Declared in
.NET:
- Namespace: SBPGPKeys
- Assembly: SecureBlackbox.PGP
VCL:Java:
- Package: SecureBlackbox.PGP.jar
C++:
Discuss this help topic in SecureBlackbox Forum