| SecurIdSdtidTokenHashXml Method |
Calculate a hash value for an XML node and its descendants, using a supplied Key and IV (initialization vector)
Namespace:
SamoyedSoftware.ursa
Assembly:
SamoyedSoftware.ursa (in SamoyedSoftware.ursa.dll) Version: 0.2.0
Syntax protected byte[] HashXml(
XmlNode node,
byte[] key,
byte[] iv
)
Protected Function HashXml (
node As XmlNode,
key As Byte(),
iv As Byte()
) As Byte()
protected:
array<unsigned char>^ HashXml(
XmlNode^ node,
array<unsigned char>^ key,
array<unsigned char>^ iv
)
member HashXml :
node : XmlNode *
key : byte[] *
iv : byte[] -> byte[]
Parameters
- node
- Type: System.XmlXmlNode
An XmlNode object to be hashed. - key
- Type: SystemByte
An AES key that will be used in the hash operation. - iv
- Type: SystemByte
An initialization vector (IV) that will be used in the hash operation.
Return Value
Type:
ByteAn array of bytes containing the results of the hash.
See Also