Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
TSBPGPMIMEError = short;
const short pmeUnknown = 0;
const short pmePGPPartNotFound = 1;
const short pmeInvalidSignature = 2;
const short pmeUnverifiableSignature = 3;
const short pmeRecipientKeyNotFound = 4;
const short pmeSenderKeyNotFound = 5;
const short pmeNoRecipients = 6;
const short pmeNoSigners = 7;
const short pmeActionNotSelected = 8;
[VB.NET]
TSBPGPMIMEError As Short
Const pmeUnknown As Short = 0
Const pmePGPPartNotFound As Short = 1
Const pmeInvalidSignature As Short = 2
Const pmeUnverifiableSignature As Short = 3
Const pmeRecipientKeyNotFound As Short = 4
Const pmeSenderKeyNotFound As Short = 5
Const pmeNoRecipients As Short = 6
Const pmeNoSigners As Short = 7
Const pmeActionNotSelected As Short = 8
[Pascal]
under development
[C++]
typedef uint8_t TSBPGPMIMEErrorRaw;
typedef enum { pmeUnknown = 0, pmePGPPartNotFound = 1, pmeInvalidSignature = 2, pmeUnverifiableSignature = 3, pmeRecipientKeyNotFound = 4, pmeSenderKeyNotFound = 5, pmeNoRecipients = 6, pmeNoSigners = 7, pmeActionNotSelected = 8 } TSBPGPMIMEError;
typedef uint32_t TSBPGPMIMEErrorsRaw;
typedef enum { f_pmeUnknown = 1, f_pmePGPPartNotFound = 2, f_pmeInvalidSignature = 4, f_pmeUnverifiableSignature = 8, f_pmeRecipientKeyNotFound = 16, f_pmeSenderKeyNotFound = 32, f_pmeNoRecipients = 64, f_pmeNoSigners = 128, f_pmeActionNotSelected = 256 } TSBPGPMIMEErrors;
[PHP]
class TSBPGPMIMEError extends TSBBaseEnum {
const pmeUnknown = 0;
const pmePGPPartNotFound = 1;
const pmeInvalidSignature = 2;
const pmeUnverifiableSignature = 3;
const pmeRecipientKeyNotFound = 4;
const pmeSenderKeyNotFound = 5;
const pmeNoRecipients = 6;
const pmeNoSigners = 7;
const pmeActionNotSelected = 8;
}
Possible values
Declared in
.NET:
- Namespace: SBPGPMIME
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum