Discuss this help topic in SecureBlackbox Forum

TSBPGPProtectionType

Declared in     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Defines possible security levels of secret keys.

Declaration

[C#]
    public 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;

[PHP]
    class TSBPGPProtectionType extends TSBBaseEnum {
        const ptNone = 0;
        const ptLow = 1;
        const ptNormal = 2;
        const ptHigh = 3;
    }

[Java]
    public enum TSBPGPProtectionType { ptNone, ptLow, ptNormal, ptHigh }

Possible values

Declared in

.NET:
  • Namespace: SBPGPConstants
  • Assembly: SecureBlackbox.PGP
VCL:
  • Unit: SBPGPConstants
Java:
  • Package: SecureBlackbox.PGP.jar
C++:
  • sbpgpconstants.h

See also:     Protection    

Discuss this help topic in SecureBlackbox Forum