Discuss this help topic in SecureBlackbox Forum

TElXMLSignatureType

Declared in     See also     


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


Specifies the type of the signature

Declaration

[C#]
    TElXMLSignatureType = short;
        const short xstDetached = 0;
        const short xstEnveloping = 1;
        const short xstEnveloped = 2;

[VB.NET]
    TElXMLSignatureType As Short
        Const xstDetached As Short = 0
        Const xstEnveloping As Short = 1
        Const xstEnveloped As Short = 2

[Pascal]
    TElXMLSignatureType = (xstDetached, xstEnveloping, xstEnveloped);

[C++]
    typedef uint8_t TElXMLSignatureTypeRaw;
    typedef enum { xstDetached = 0, xstEnveloping = 1, xstEnveloped = 2 } TElXMLSignatureType;
    
    typedef uint32_t TElXMLSignatureTypesRaw;
    typedef enum { f_xstDetached = 1, f_xstEnveloping = 2, f_xstEnveloped = 4 } TElXMLSignatureTypes;

[PHP]
    class TElXMLSignatureType extends TSBBaseEnum {
        const xstDetached = 0;
        const xstEnveloping = 1;
        const xstEnveloped = 2;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBXMLSec
  • Assembly: SecureBlackbox.XML
VCL:
  • Unit: SBXMLSec
Java:
  • Package: SecureBlackbox.XML.jar
C++:
  • sbxmlsec.h

See also:     TElXMLSigner.SignatureType     TElXMLVerifier.SignatureType    

Discuss this help topic in SecureBlackbox Forum