Discuss this help topic in SecureBlackbox Forum
Defines PGP trust flags according to PGP 9.0 specification.
Declaration
[C#/Java]
TSBPGPKeyTrust = int;
const short ktUndefined = 0;
const short ktNone = 1;
const short ktMarginal = 2;
const short ktTrusted = 3;
const short ktImplicit = 4;
[VB.NET]
TSBPGPKeyTrust As Integer
Const ktUndefined As SmallInt = 0
Const ktNone As SmallInt = 1
Const ktMarginal As SmallInt = 2
Const ktTrusted As SmallInt = 3
Const ktImplicit As SmallInt = 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;
Description
Possible values:
Declared in
.NET:
- Namespace: SBPGPKeys
- Assembly: SecureBlackbox.PGP
VCL:Java:
- Package: SecureBlackbox.PGP.jar
C++:
Discuss this help topic in SecureBlackbox Forum