| <!DOCTYPE html> |
| <html> |
| <head> |
| <script src="../../resources/js-test-pre.js"></script> |
| <script src="../resources/common.js"></script> |
| </head> |
| <body> |
| <p id="description"></p> |
| <div id="console"></div> |
| |
| <script> |
| description("Test generating a HMAC key with sha-384."); |
| |
| jsTestIsAsync = true; |
| |
| var extractable = true; |
| |
| debug("\nGenerating a key..."); |
| crypto.subtle.generateKey({name: "hmac", hash: "sha-384"}, extractable, ["sign", "verify"]).then(function(result) { |
| key = result; |
| |
| shouldBe("key.type", "'secret'"); |
| shouldBe("key.extractable", "true"); |
| shouldBe("key.algorithm.name", "'HMAC'"); |
| shouldBe("key.algorithm.length", "1024"); |
| shouldBe("key.algorithm.hash.name", "'SHA-384'"); |
| shouldBe("key.usages", '["sign", "verify"]'); |
| |
| finishJSTest(); |
| }); |
| </script> |
| |
| <script src="../../resources/js-test-post.js"></script> |
| </body> |
| </html> |