Discuss this help topic in SecureBlackbox Forum
Defines possible types of PGP signatures.
Declaration
[C#]
public 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;
[PHP]
class TSBPGPSignatureType extends TSBBaseEnum {
const stNormal = 0;
const stOnePass = 1;
const stDetached = 2;
const stCleartext = 3;
}
[Java]
public enum TSBPGPSignatureType { stNormal, stOnePass, stDetached, stCleartext }
Possible values
Declared in
.NET:
- Namespace: SBPGPStreams
- Assembly: SecureBlackbox.PGP
VCL:Java:
- Package: SecureBlackbox.PGP.jar
C++:
Discuss this help topic in SecureBlackbox Forum