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

Side by Side Diff: LayoutTests/crypto/sign-verify-badParameters.html

Issue 285823002: [webcrypto] Remove RSA-ES support (1 of 3) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix some usages Created 6 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../resources/js-test.js"></script> 4 <script src="../resources/js-test.js"></script>
5 <script src="resources/common.js"></script> 5 <script src="resources/common.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <p id="description"></p> 8 <p id="description"></p>
9 <div id="console"></div> 9 <div id="console"></div>
10 10
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 }).then(failAndFinishJSTest, function(result) { 44 }).then(failAndFinishJSTest, function(result) {
45 logError(result); 45 logError(result);
46 46
47 // Operation does not support signing. 47 // Operation does not support signing.
48 return crypto.subtle.sign({name: 'sha-1'}, key, data); 48 return crypto.subtle.sign({name: 'sha-1'}, key, data);
49 }).then(failAndFinishJSTest, function(result) { 49 }).then(failAndFinishJSTest, function(result) {
50 logError(result); 50 logError(result);
51 51
52 // Operation doesn't support signing (also given an invalid key, but the 52 // Operation doesn't support signing (also given an invalid key, but the
53 // first failure takes priority) 53 // first failure takes priority)
54 return crypto.subtle.sign({name: 'RSAES-PKCS1-v1_5'}, key, data); 54 return crypto.subtle.sign({name: 'AES-CBC'}, key, data);
55 }).then(failAndFinishJSTest, function(result) { 55 }).then(failAndFinishJSTest, function(result) {
56 logError(result); 56 logError(result);
57 }).then(finishJSTest, failAndFinishJSTest); 57 }).then(finishJSTest, failAndFinishJSTest);
58 58
59 </script> 59 </script>
60 60
61 </body> 61 </body>
62 </html> 62 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698