C#
C#
Example: SecureString.HashVal method
Demonstrates theHashVal method.
Chilkat C# Downloads
bool success = false;
Chilkat.SecureString str = new Chilkat.SecureString();
str.MaintainHash = "sha256";
str.Append("Hello World");
string encodedHash = str.HashVal("base64");
Debug.WriteLine(encodedHash);