Discuss this help topic in SecureBlackbox Forum

TSBPGPUserCertificationType

Declared in     See also     


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


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;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBPGPKeys
  • Assembly: SecureBlackbox.PGP
VCL:
  • Unit: SBPGPKeys
Java:
  • Package: SecureBlackbox.PGP.jar
C++:
  • sbpgpkeys.h

See also:     Sign    

Discuss this help topic in SecureBlackbox Forum