Documentation Index
Fetch the curated documentation index at: https://grafana_com_website/llms.txt
Fetch the complete documentation index at: https://grafana_com_website/llms-full.txt
Use this file to discover all available pages before exploring further.
STOP! If you are an AI agent or LLM, read this before continuing. This is the HTML version of a Grafana documentation page. Always request the Markdown version instead - HTML wastes context. Get this page as Markdown: /docs/k6/next/javascript-api/k6-crypto/sha512_224.md (append .md) or send Accept: text/markdown to /docs/k6/next/javascript-api/k6-crypto/sha512_224/. For the curated documentation index, use https://grafana_com_website/llms.txt. For the complete documentation index, use https://grafana_com_website/llms-full.txt.
This is documentation for the next version of Grafana k6 documentation. For the latest stable release, go to the latest version.
sha512_224( input, outputEncoding )
Note
A module with a better and standard API exists.
The crypto module partially implements the WebCrypto API, supporting more features than k6/crypto.
Use sha512_224 to hash input data.
| Parameter | Type | Description |
|---|---|---|
| input | string / ArrayBuffer | The input string or ArrayBuffer object to hash. |
| outputEncoding | string | Describes the type of encoding to use for the hash value. Can be “base64”, “base64url”, “base64rawurl”, “hex” or “binary”. |
Returns
| Type | Description |
|---|---|
| string / Array | The hash digest as string (for “base64”, “base64url”, “base64rawurl”, “hex” outputEncoding) or raw array of integers (for “binary” outputEncoding). |
Example
import crypto from 'k6/crypto';
export default function () {
let hash = crypto.sha512_224('hello world!', 'hex');
console.log(hash);
const binArray = [104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100, 33];
hash = crypto.sha512_224(new Uint8Array(binArray).buffer, 'hex');
console.log(hash);
}The above script should result in the following being printed during execution:
INFO[0000] bc4ed196f7ba1c20f6fb6be1f91edf8293a35b065d6e7d6fd368c890
INFO[0000] bc4ed196f7ba1c20f6fb6be1f91edf8293a35b065d6e7d6fd368c890Was this page helpful?
Related resources from Grafana Labs

