CkPython
CkPython
Example: SecureString.HashVal method
Demonstrates theHashVal method.
Chilkat CkPython Downloads
import chilkat
success = False
str = chilkat.CkSecureString()
str.put_MaintainHash("sha256")
str.Append("Hello World")
encodedHash = str.hashVal("base64")
print(encodedHash)