Crypto.SHA512

From Xojo Documentation

Method

Crypto.SHA512(data As MemoryBlock) As MemoryBlock

New in 2012r2

Supported for all project types and targets.

Returns the SHA512 hash value of the data.

Notes

Refer to SHA512 on Wikipedia.

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

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