B4X
B4X
Example: SecureString.HashVal method
Demonstrates theHashVal method.
Chilkat B4X Downloads
Dim success As Boolean = False
Dim str As ChilkatSecureString
str.Initialize
str.MaintainHash = "sha256"
str.Append("Hello World")
Dim encodedHash As String = str.HashVal("base64")
Log(encodedHash)