Crypto.SHA256

From Xojo Documentation

Method

Crypto.SHA256(data As MemoryBlock) As MemoryBlock

New in 2012r2

Supported for all project types and targets.

Returns the SHA256 hash value of the data.

Notes

Refer to SHA256 on Wikipedia.

This is equivalent of calling the Hash method with SHA256 as the algorithm:

Var encryptedValue As String
encryptedValue = Crypto.Hash("DataToEncrypt", Crypto.Algorithm.SHA256)