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.
EcKeyGenParams
The EcKeyGenParams
object represents the object that should be passed as the algorithm parameter into the
generateKey operation when generating key pairs for ECDH or ECDSA algorithms.
Properties
Example
import { crypto } from 'k6/experimental/webcrypto';
export default async function () {
const keyPair = await crypto.subtle.generateKey(
{
name: 'ECDSA',
namedCurve: 'P-256',
},
true,
['sign', 'verify']
);
console.log(JSON.stringify(keyPair));
}