Menu
Choose a product
Viewing: v1.7.x (latest)
Find another version
Scroll for more
Open source
md5( 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 md5 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
JavaScript
JavaScript
import crypto from 'k6/crypto';
export default function () {
let hash = crypto.md5('hello world!', 'hex');
console.log(hash);
const binArray = [104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100, 33];
hash = crypto.md5(new Uint8Array(binArray).buffer, 'hex');
console.log(hash);
}The above script should result in the following being printed during execution:
Bash
INFO[0000] fc3ff98e8c6a0d3087d515c0473f8677
INFO[0000] fc3ff98e8c6a0d3087d515c0473f8677Was this page helpful?
Related resources from Grafana Labs
Additional helpful documentation, links, and articles:
Video

Performance testing and observability in Grafana Cloud
Optimize user experiences with Grafana Cloud. Learn real-time insights, performance testing with k6, and continuous validation with Synthetic Monitoring.
Events

User-centered observability: load testing, real user monitoring, and synthetics
Learn how to use load testing, synthetic monitoring, and real user monitoring (RUM) to understand end users' experience of your apps. Watch on demand.