Discuss this help topic in SecureBlackbox Forum
Defines possible security levels of secret keys.
Declaration
[C#/Java]
enum TSBPGPProtectionType { ptNone = 0, ptLow = 1, ptNormal = 2, ptHigh = 3 };
[VB.NET]
Enum TSBPGPProtectionType
ptNone = 0
ptLow = 1
ptNormal = 2
ptHigh = 3
End Enum
[Pascal]
TSBPGPProtectionType = (ptNone, ptLow, ptNormal, ptHigh);
[C++]
typedef uint8_t TSBPGPProtectionTypeRaw;
typedef enum { _ptNone = 0, ptLow = 1, ptNormal = 2, ptHigh = 3 } TSBPGPProtectionType;
Description
Possible values:
Declared in
.NET:
- Namespace: SBPGPConstants
- Assembly: SecureBlackbox.PGP
VCL:Java:
- Package: SecureBlackbox.PGP.jar
C++:
Discuss this help topic in SecureBlackbox Forum