Discuss this help topic in SecureBlackbox Forum

TElXMLSignatureType

Declared in     See also     


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


Specifies the type of the signature

Declaration

[C#/Java]
    TElXMLSignatureType = short;
        const short xstDetached = 1;
        const short xstEnveloping = 2;
        const short xstEnveloped = 4;

[VB.NET]
    TElXMLSignatureType As SmallInt
        Const xstDetached As SmallInt = 1
        Const xstEnveloping As SmallInt = 2
        Const xstEnveloped As SmallInt = 4

[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;

Description

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