I have the following javascript. It should generate an ECDSA public-private keypair, and print BASE64 encoded public key as string to console. I would expect it to generate a new key on each reload. But it always prints the same all the time, and I do not understand why. Is it generating the very same key all the time? What to do to get a new key instead?
JSfiddle: https://jsfiddle.net/35bk4maw/
window.crypto.subtle.generateKey(
{
name: "ECDSA",
namedCurve: "P-256", //can be "P-256", "P-384", or "P-521"
},
true, //whether the key is extractable (i.e. can be used in exportKey)
["sign", "verify"] //can be any combination of "sign" and "verify"
)
.then(function(key)
{
window.crypto.subtle.exportKey(
"spki", //can be "jwk" (public or private), "spki" (public only), or "pkcs8" (private only)
key.publicKey //can be a publicKey or privateKey, as long as extractable was true
).then(function(keydata)
{
// this always prints something like "A21ixmVqdCBccnOheQJ1cmNlcl0="
// I would expect it to print different string on each reload!
console.log(btoa(keydata));
})
.catch(function(err){ console.error(err); });
}).catch(function(err){ console.error(err); });