Discuss this help topic in SecureBlackbox Forum
Defines possible reasons of revocation.
Declaration
[C#/Java]
TSBPGPReasonForRevocation = int;
const short rrNoReason = 0;
const short rrKeySuperseded = 1;
const short rrKeyCompromised = 2;
const short rrKeyRetired = 3;
const short rrUserIDNotValid = 4;
[VB.NET]
TSBPGPReasonForRevocation As Integer
Const rrNoReason As SmallInt = 0
Const rrKeySuperseded As SmallInt = 1
Const rrKeyCompromised As SmallInt = 2
Const rrKeyRetired As SmallInt = 3
Const rrUserIDNotValid As SmallInt = 4
[Pascal]
TSBPGPReasonForRevocation = (rrNoReason, rrKeySuperseded, rrKeyCompromised, rrKeyRetired, rrUserIDNotValid);
[C++]
typedef uint8_t TSBPGPReasonForRevocationRaw;
typedef enum { rrNoReason = 0, rrKeySuperseded = 1, rrKeyCompromised = 2, rrKeyRetired = 3, rrUserIDNotValid = 4 } TSBPGPReasonForRevocation;
Description
Possible values:
Declared in
.NET:
- Namespace: SBPGPEntities
- Assembly: SecureBlackbox.PGP
VCL:Java:
- Package: SecureBlackbox.PGP.jar
C++:
Discuss this help topic in SecureBlackbox Forum