Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
TSBPGPMIMEErrors = int;
const int pmeUnknown = 1;
const int pmePGPPartNotFound = 2;
const int pmeInvalidSignature = 4;
const int pmeUnverifiableSignature = 8;
const int pmeRecipientKeyNotFound = 16;
const int pmeSenderKeyNotFound = 32;
const int pmeNoRecipients = 64;
const int pmeNoSigners = 128;
const int pmeActionNotSelected = 256;
[VB.NET]
TSBPGPMIMEErrors As Integer
Const pmeUnknown As Integer = 1
Const pmePGPPartNotFound As Integer = 2
Const pmeInvalidSignature As Integer = 4
Const pmeUnverifiableSignature As Integer = 8
Const pmeRecipientKeyNotFound As Integer = 16
Const pmeSenderKeyNotFound As Integer = 32
Const pmeNoRecipients As Integer = 64
Const pmeNoSigners As Integer = 128
Const pmeActionNotSelected As Integer = 256
[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 TSBPGPMIMEErrors extends TSBBaseEnum {
const pmeUnknown = 1;
const pmePGPPartNotFound = 2;
const pmeInvalidSignature = 4;
const pmeUnverifiableSignature = 8;
const pmeRecipientKeyNotFound = 16;
const pmeSenderKeyNotFound = 32;
const pmeNoRecipients = 64;
const pmeNoSigners = 128;
const pmeActionNotSelected = 256;
}
Possible values
Declared in
.NET:
- Namespace: SBPGPMIME
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum