Discuss this help topic in SecureBlackbox Forum
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;
}
Possible values
Declared in
.NET:
- Namespace: SBPGPKeys
- Assembly: SecureBlackbox.PGP
VCL:Java:
- Package: SecureBlackbox.PGP.jar
C++:
Discuss this help topic in SecureBlackbox Forum