Answers for "create a hash of an XML c#"

C#
0

create a hash of an XML c#

System.Security.Cryptography.MACTripleDES hash = new System.Security.Cryptography.MACTripleDES(Encoding.Default.GetBytes("mykey"));
string hashString = Convert.ToBase64String(hash.ComputeHash(Encoding.Default.GetBytes(myXMLString)));
Posted by: Guest on September-29-2020

C# Answers by Framework

Browse Popular Code Answers by Language