OLD | NEW |
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 |
11 <script> | 11 <script> |
12 description("Test calling AES-CBC encrypt with a HMAC key."); | 12 description("Test calling AES-CBC encrypt with a HMAC key."); |
13 | 13 |
14 jsTestIsAsync = true; | 14 jsTestIsAsync = true; |
15 | 15 |
16 var iv = hexStringToUint8Array("000102030405060708090a0b0c0d0e0f"); | 16 var iv = hexStringToUint8Array("000102030405060708090a0b0c0d0e0f"); |
17 var plaintext = hexStringToUint8Array("6bc1bee22e409f96e93d7e117393172aae2d8a571
e03ac9c9eb76fac45af8e5130c81c46a35ce411e5fbc1191a0a52eff69f2445df4f9b17ad2b417be
66c3710"); | 17 var plaintext = hexStringToUint8Array("6bc1bee22e409f96e93d7e117393172aae2d8a571
e03ac9c9eb76fac45af8e5130c81c46a35ce411e5fbc1191a0a52eff69f2445df4f9b17ad2b417be
66c3710"); |
18 var hmacKey = asciiToUint8Array('a'); | 18 var hmacKey = asciiToUint8Array('a'); |
19 var extractable = true; | 19 var extractable = true; |
20 | 20 |
21 debug("Importing a raw HMAC key from string literal..."); | 21 debug("Importing a raw HMAC key from string literal..."); |
22 crypto.subtle.importKey("raw", hmacKey, {name: 'hmac', hash: {name: 'sha-1'}}, e
xtractable, ["sign", "verify"]).then(function(result) { | 22 crypto.subtle.importKey("raw", hmacKey, {name: 'hmac', hash: {name: 'sha-1'}}, e
xtractable, ["sign", "verify"]).then(function(result) { |
23 key = result; | 23 key = result; |
24 debug("Using the key to encrypt plaintext..."); | 24 debug("Using the key to encrypt plaintext..."); |
25 return crypto.subtle.encrypt({name: "aes-cbc", iv: iv}, key, plaintext); | 25 return crypto.subtle.encrypt({name: "aes-cbc", iv: iv}, key, plaintext); |
26 }).then(failAndFinishJSTest, function(result) { | 26 }).then(failAndFinishJSTest, function(result) { |
27 logError(result); | 27 logError(result); |
28 }).then(finishJSTest, failAndFinishJSTest); | 28 }).then(finishJSTest, failAndFinishJSTest); |
29 </script> | 29 </script> |
30 | 30 |
31 </body> | 31 </body> |
32 </html> | 32 </html> |
OLD | NEW |