Sample code for 30+ languages & platforms
Xojo Plugin

Example: SecureString.HashVal method

Demonstrates the HashVal method.

Chilkat Xojo Plugin Downloads

Xojo Plugin
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)