use the opts we built, duh

This commit is contained in:
AJ ONeal 2018-11-10 07:58:02 +00:00
förälder 2fb775a822
incheckning 136c9c06fe
2 ändrade filer med 3 tillägg och 1 borttagningar

Visa fil

@ -34,9 +34,11 @@
testEcdsaSupport().then(function () {
console.log("supports ECDSA");
BROWSER_SUPPORTS_ECDSA = true;
return true;
}).catch(function () {
console.log("DOES NOT supports ECDSA");
BROWSER_SUPPORTS_ECDSA = false;
return false;
});
// TODO test RSA support

Visa fil

@ -566,7 +566,7 @@ BACME.generateKeypair = function (opts) {
}
var extractable = true;
return window.crypto.subtle.generateKey(
{ name: "ECDSA", namedCurve: "P-256" }
wcOpts
, extractable
, [ 'sign', 'verify' ]
);