VB.NET
VB.NET
Example: SecureString.HashVal method
Demonstrates theHashVal method.
Chilkat VB.NET Downloads
Dim success As Boolean = False
Dim str As New Chilkat.SecureString
str.MaintainHash = "sha256"
str.Append("Hello World")
Dim encodedHash As String = str.HashVal("base64")
Debug.WriteLine(encodedHash)