OLD | NEW |
---|---|
(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 that HKDF does not support methods it should not support."); | |
13 | |
14 jsTestIsAsync = true; | |
15 | |
16 kHkdfKey = "0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b"; | |
17 | |
18 var extractable = true; | |
19 Promise.resolve(null).then(function(result) { | |
20 // set up the test by creating an HKDF key and an RSA key | |
eroman
2015/01/07 01:18:43
indent by 4.
nharper
2015/01/09 22:41:47
Done.
| |
21 return crypto.subtle.importKey("raw", hexStringToUint8Array(kHkdfKey), {name: "HKDF"}, extractable, ['deriveKey', 'deriveBits']); | |
22 }).then(function(result) { | |
23 hkdfKey = result; | |
24 | |
25 debug("\nHKDF does not support exportKey()..."); | |
eroman
2015/01/07 01:18:43
Let's sync up with Ryan when he gets back and see
eroman
2015/01/09 03:16:01
I chatted with Ryan and this is fine as is.
My co
| |
26 return crypto.subtle.exportKey("raw", hkdfKey); | |
27 }).then(failAndFinishJSTest, function(result) { | |
28 logError(result); | |
29 | |
30 }).then(finishJSTest); | |
31 | |
32 </script> | |
33 | |
34 </body> | |
35 </html> | |
OLD | NEW |