Menu
Choose a product
Viewing: v0.48.x
Find another version
Scroll for more
Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.
Open source
AesCtrParams
The AesCtrParams object represents the object that should be passed as the algorithm parameter into the
encrypt and
decrypt operation when using the AES-CTR algorithm.
For more details, head to the MDN Web Crypto API documentation on AES-CTR.
Properties
| Property | Type | Description |
|---|---|---|
| name | string | Should be set to AES-CTR. |
| counter | ArrayBuffer, TypedArray, or DataView | The initial value of the counter block. This must be 16-bytes long, like the AES block size. |
| length | number | The number of bits in the counter block that are used for the actual counter. It is recommended to use 64 (half of the counter block). |
Example
JavaScript
JavaScript
import { crypto } from 'k6/experimental/webcrypto';
export default async function () {
const plaintext = stringToArrayBuffer('Hello, World!');
/**
* Generate a symmetric key using the AES-CTR algorithm.
*/
const key = await crypto.subtle.generateKey(
{
name: 'AES-CTR',
length: 256,
},
true,
['encrypt', 'decrypt']
);
/**
* Encrypt the plaintext using the AES-CTR key with
* have generated.
*/
const ciphertext = await crypto.subtle.encrypt(
{
name: 'AES-CTR',
counter: crypto.getRandomValues(new Uint8Array(16)),
length: 128,
},
key,
plaintext
);
}
function stringToArrayBuffer(str) {
const buf = new ArrayBuffer(str.length * 2); // 2 bytes for each char
const bufView = new Uint16Array(buf);
for (let i = 0, strLen = str.length; i < strLen; i++) {
bufView[i] = str.charCodeAt(i);
}
return buf;
}Was 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.