Discuss this help topic in SecureBlackbox Forum
Defines possible types of encryption.
Declaration
[C#/Java]
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;
Description
Possible values:
Declared in
.NET:
- Namespace: SBPGP
- Assembly: SecureBlackbox.PGP
VCL:Java:
- Package: SecureBlackbox.PGP.jar
C++:
Discuss this help topic in SecureBlackbox Forum