Crypto functions
Use these functions to create cryptographic hashes.
Use these functions to create cryptographic hashes.
crypto.FNV32a STRING ⟼ intReturns the 32-bit FNV (Fowler–Noll–Vo) non-cryptographic hash of the given string. Read More »
crypto.HMAC HASH_TYPE KEY MESSAGE [ENCODING] ⟼ stringReturns a cryptographic hash that uses a key to sign a message. Read More »
crypto.MD5 INPUT ⟼ stringHashes the given input and returns its MD5 checksum encoded to a hexadecimal string. Read More »
crypto.SHA1 INPUT ⟼ stringHashes the given input and returns its SHA1 checksum encoded to a hexadecimal string. Read More »
crypto.SHA256 INPUT ⟼ stringHashes the given input and returns its SHA256 checksum encoded to a hexadecimal string. Read More »