Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup! crypto: fix JWK RSA-PSS SubtleCrypto.exportKey
  • Loading branch information
panva committed Aug 21, 2021
commit cc8c546fcad0b40988bc6a9a9384c8efb3d6d631
4 changes: 2 additions & 2 deletions test/parallel/test-webcrypto-export-import-rsa.js
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ const testVectors = [
true,
['verify']);
const jwk = await subtle.exportKey('jwk', key);
assert.equal(jwk.alg, 'PS256');
assert.strictEqual(jwk.alg, 'PS256');
})().then(common.mustCall());

(async () => {
Expand All @@ -518,6 +518,6 @@ const testVectors = [
true,
['sign']);
const jwk = await subtle.exportKey('jwk', key);
assert.equal(jwk.alg, 'PS256');
assert.strictEqual(jwk.alg, 'PS256');
})().then(common.mustCall());
}