Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
TSBPGPKeysError = short;
const short pkeUnknown = 0;
const short pkeKeysPartNotFound = 1;
const short pkeNoPublicKeys = 2;
[VB.NET]
TSBPGPKeysError As Short
Const pkeUnknown As Short = 0
Const pkeKeysPartNotFound As Short = 1
Const pkeNoPublicKeys As Short = 2
[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 TSBPGPKeysError extends TSBBaseEnum {
const pkeUnknown = 0;
const pkeKeysPartNotFound = 1;
const pkeNoPublicKeys = 2;
}
Possible values
Declared in
.NET:
- Namespace: SBPGPMIME
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum