Asynchronously generates a new random secret key of the given length
. Thetype
will determine which validations will be performed on the length
.
const {
generateKey
} = await import('crypto');
generateKey('hmac', { length: 64 }, (err, key) => {
if (err) throw err;
console.log(key.export().toString('hex')); // 46e..........620
});
Generated using TypeDoc
Asynchronously generates a new random secret key of the given
length
. Thetype
will determine which validations will be performed on thelength
.