Skip to main content

http.hash.sha256(dataToHash)

Performs a SHA-256 hash function

Availability

Agent

Parameters

Name Type Description
dataToHash String or blob The data to which the hash function will be applied

Returns

Blob — the hashed data (32 bytes)

Description

This method performs a SHA-256 hash on the input data. Because the returned data is a blob, it is not uncommon to Base64 encode it.

Example Code

A simple example of SHA-256 hashing.