Discuss this help topic in SecureBlackbox Forum

TSBPGPSignatureType

Declared in     See also     


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


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:
  • Unit: SBPGPStreams
Java:
  • Package: SecureBlackbox.PGP.jar
C++:
  • sbpgpstreams.h

See also:     SBPGPSignatureValidity    

Discuss this help topic in SecureBlackbox Forum