Discuss this help topic in SecureBlackbox Forum
Defines possible types of PGP signatures.
Declaration
[C#/Java]
enum TSBPGPSignatureType { stNormal = 0, stOnePass = 1, stDetached = 2, stCleartext = 3 };
[VB.NET]
Enum TSBPGPSignatureType
stNormal = 0
stOnePass = 1
stDetached = 2
stCleartext = 3
End Enum
[Pascal]
TSBPGPSignatureType = (stNormal, stOnePass, stDetached, stClearText);
[C++]
typedef uint8_t TSBPGPSignatureTypeRaw;
typedef enum { stNormal = 0, stOnePass = 1, stDetached = 2, stCleartext = 3 } TSBPGPSignatureType;
Description
Possible values:
Declared in
.NET:
- Namespace: SBPGPStreams
- Assembly: SecureBlackbox.PGP
VCL:Java:
- Package: SecureBlackbox.PGP.jar
C++:
Discuss this help topic in SecureBlackbox Forum