Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
TSBPGPKeysErrors = int;
const int pkeUnknown = 1;
const int pkeKeysPartNotFound = 2;
const int pkeNoPublicKeys = 4;
[VB.NET]
TSBPGPKeysErrors As Integer
Const pkeUnknown As Integer = 1
Const pkeKeysPartNotFound As Integer = 2
Const pkeNoPublicKeys As Integer = 4
[Pascal]
under development
[C++]
typedef uint8_t TSBPGPKeysErrorRaw;
typedef enum { pkeUnknown = 0, pkeKeysPartNotFound = 1, pkeNoPublicKeys = 2 } TSBPGPKeysError;
typedef uint32_t TSBPGPKeysErrorsRaw;
typedef enum { f_pkeUnknown = 1, f_pkeKeysPartNotFound = 2, f_pkeNoPublicKeys = 4 } TSBPGPKeysErrors;
[PHP]
class TSBPGPKeysErrors extends TSBBaseEnum {
const pkeUnknown = 1;
const pkeKeysPartNotFound = 2;
const pkeNoPublicKeys = 4;
}
Possible values
Declared in
.NET:
- Namespace: SBPGPMIME
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum