Xojo Plugin
Xojo Plugin
Example: SecureString.HashVal method
Demonstrates theHashVal method.
Chilkat Xojo Plugin Downloads
Dim success As Boolean
success = False
Dim str As New Chilkat.SecureString
str.MaintainHash = "sha256"
success = str.Append("Hello World")
Dim encodedHash As String
encodedHash = str.HashVal("base64")
System.DebugLog(encodedHash)