Discuss this help topic in SecureBlackbox Forum

TSBPGPKeyTrust

Declared in     See also     


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


Defines PGP trust flags according to PGP 9.0 specification.

Declaration

[C#]
    TSBPGPKeyTrust = short;
        const short ktUndefined = 0;
        const short ktNone = 1;
        const short ktMarginal = 2;
        const short ktTrusted = 3;
        const short ktImplicit = 4;

[VB.NET]
    TSBPGPKeyTrust As Short
        Const ktUndefined As Short = 0
        Const ktNone As Short = 1
        Const ktMarginal As Short = 2
        Const ktTrusted As Short = 3
        Const ktImplicit As Short = 4

[Pascal]
    TSBPGPKeyTrust = (ktUndefined, ktNone, ktMarginal, ktTrusted, ktImplicit);

[C++]
    typedef uint8_t TSBPGPKeyTrustRaw;
    typedef enum { ktUndefined = 0, ktNone = 1, ktMarginal = 2, ktTrusted = 3, ktImplicit = 4 } TSBPGPKeyTrust;

[PHP]
    class TSBPGPKeyTrust extends TSBBaseEnum {
        const ktUndefined = 0;
        const ktNone = 1;
        const ktMarginal = 2;
        const ktTrusted = 3;
        const ktImplicit = 4;
    }

[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:     KeyTrust    

Discuss this help topic in SecureBlackbox Forum