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
Example
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;
}

