Discuss this help topic in SecureBlackbox Forum
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:Java:
- Package: SecureBlackbox.PGP.jar
C++:
Discuss this help topic in SecureBlackbox Forum