Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
TSBPGPMIMEType = short;
const short pmtUnknown = 0;
const short pmtSigned = 1;
const short pmtEncrypted = 2;
const short pmtSignedEncrypted = 3;
[VB.NET]
TSBPGPMIMEType As Short
Const pmtUnknown As Short = 0
Const pmtSigned As Short = 1
Const pmtEncrypted As Short = 2
Const pmtSignedEncrypted As Short = 3
[Pascal]
under development
[C++]
typedef uint8_t TSBPGPMIMETypeRaw;
typedef enum { pmtUnknown = 0, pmtSigned = 1, pmtEncrypted = 2, pmtSignedEncrypted = 3 } TSBPGPMIMEType;
[PHP]
class TSBPGPMIMEType extends TSBBaseEnum {
const pmtUnknown = 0;
const pmtSigned = 1;
const pmtEncrypted = 2;
const pmtSignedEncrypted = 3;
}
Possible values
Declared in
.NET:
- Namespace: SBPGPMIME
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum