Discuss this help topic in SecureBlackbox Forum
Specifies the way the data is signed
Declaration
[C#]
TElXMLSigMethodType = short;
const short xmtSig = 0;
const short xmtMAC = 1;
[VB.NET]
TElXMLSigMethodType As Short
Const xmtSig As Short = 0
Const xmtMAC As Short = 1
[Pascal]
TElXMLSigMethodType = (xmtSig, xmtMAC);
[C++]
typedef uint8_t TElXMLSigMethodTypeRaw;
typedef enum { xmtSig = 0, xmtMAC = 1 } TElXMLSigMethodType;
[PHP]
class TElXMLSigMethodType extends TSBBaseEnum {
const xmtSig = 0;
const xmtMAC = 1;
}
Possible values
Declared in
.NET:
- Namespace: SBXMLSec
- Assembly: SecureBlackbox.XML
VCL:Java:
- Package: SecureBlackbox.XML.jar
C++:
Discuss this help topic in SecureBlackbox Forum