Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Unified Diff: LayoutTests/crypto/rsa-oaep-generateKey-parseAlgorithm-failures.html

Issue 595873003: [webcrypto] Interpret empty BigInteger as 0 according to the spec (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Move tests Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/crypto/rsa-ssa-generateKey-parseAlgorithm-failures.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/crypto/rsa-oaep-generateKey-parseAlgorithm-failures.html
diff --git a/LayoutTests/crypto/rsa-oaep-generateKey-parseAlgorithm-failures.html b/LayoutTests/crypto/rsa-oaep-generateKey-parseAlgorithm-failures.html
index 8e1dd9ed5006432037467e5fcf0aa01ed3f51348..e6a345c5749c4c12c3909edca90a7d4678d9ebe9 100644
--- a/LayoutTests/crypto/rsa-oaep-generateKey-parseAlgorithm-failures.html
+++ b/LayoutTests/crypto/rsa-oaep-generateKey-parseAlgorithm-failures.html
@@ -13,7 +13,7 @@ description("Tests generateKey() with bad RSA-OAEP parameters.");
jsTestIsAsync = true;
extractable = true;
-keyUsages = ['sign', 'verify'];
+keyUsages = ['encrypt', 'decrypt'];
Promise.resolve(null).then(function() {
return crypto.subtle.generateKey({name: 'RSA-OAEP', hash: {name: 'sha-1'}, modulusLength: -30}, extractable , keyUsages);
« no previous file with comments | « no previous file | LayoutTests/crypto/rsa-ssa-generateKey-parseAlgorithm-failures.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698