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