Discuss this help topic in SecureBlackbox Forum

TSBPGPEncryptionType

Declared in     See also     


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


Defines possible types of encryption.

Declaration

[C#]
    public enum TSBPGPEncryptionType { etPublicKey = 0, etPassphrase = 1, etBoth = 2 };

[VB.NET]
    Enum TSBPGPEncryptionType
        etPublicKey = 0
        etPassphrase = 1
        etBoth = 2
    End Enum

[Pascal]
    TSBPGPEncryptionType = (etPublicKey, etPassphrase, etBoth);

[C++]
    typedef uint8_t TSBPGPEncryptionTypeRaw;
    typedef enum { etPublicKey = 0, etPassphrase = 1, etBoth = 2 } TSBPGPEncryptionType;

[PHP]
    class TSBPGPEncryptionType extends TSBBaseEnum {
        const etPublicKey = 0;
        const etPassphrase = 1;
        const etBoth = 2;
    }

[Java]
    public enum TSBPGPEncryptionType { etPublicKey, etPassphrase, etBoth }

Possible values

Declared in

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

See also:     EncryptionType    

Discuss this help topic in SecureBlackbox Forum