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

Side by Side Diff: LayoutTests/crypto/aes-cbc-invalid-length.html

Issue 298023002: [webcrypto] Import WebKit's webcrypto tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove FIXME for unrecognized jwk usages (supported now) Created 6 years, 6 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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../resources/js-test.js"></script>
5 <script src="resources/common.js"></script>
6 </head>
7 <body>
8 <p id="description"></p>
9 <div id="console"></div>
10
11 <script>
12 description("Test an unsupported AES key length.");
13
14 jsTestIsAsync = true;
15
16 var keyData = hexStringToUint8Array("8e73b0f7da0e6452c810f32b809079e562f8ead2522 c");
17 var iv = hexStringToUint8Array("000102030405060708090a0b0c0d0e0f");
18 var plaintext = hexStringToUint8Array("6bc1bee22e409f96e93d7e117393172aae2d8a571 e03ac9c9eb76fac45af8e5130c81c46a35ce411e5fbc1191a0a52eff69f2445df4f9b17ad2b417be 66c3710");
19 var extractable = true;
20
21 debug("Importing a raw AES key from string literal...");
22 crypto.subtle.importKey("raw", keyData, {name: "aes-cbc"}, extractable, ["encryp t", "decrypt"]).then(function(result) {
23 debug("importKey() should have failed, since the key length was 176 bits");
24 }).then(failAndFinishJSTest, function(result) {
25 logError(result);
26 }).then(finishJSTest, failAndFinishJSTest);
27 </script>
28
29 </body>
30 </html>
OLDNEW
« no previous file with comments | « LayoutTests/crypto/aes-cbc-import-jwk-expected.txt ('k') | LayoutTests/crypto/aes-cbc-invalid-length-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698