Crypto.SHA3 512

From Xojo Documentation

Method

Crypto.SHA3_512(data As MemoryBlock) As MemoryBlock

New in 2021r3

Supported for all project types and targets.

Returns the SHA3_512 hash value of the data.

Notes

Refer to SHA-3 on Wikipedia.

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

Var encryptedValue As String
encryptedValue = Crypto.Hash("DataToEncrypt", Crypto.HashAlgorithms.SHA3_512)