| 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("Tests ECDH's deriveBits() using P-521"); | 12 description("Tests ECDH's deriveBits() using P-521"); |
| 13 | 13 |
| 14 jsTestIsAsync = true; | 14 jsTestIsAsync = true; |
| 15 | 15 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 debug("Deriving 521 bits...\n"); | 53 debug("Deriving 521 bits...\n"); |
| 54 return crypto.subtle.deriveBits({name: 'ecdh', public: keys.public}, keys.pr
ivate, numBitsToDerive); | 54 return crypto.subtle.deriveBits({name: 'ecdh', public: keys.public}, keys.pr
ivate, numBitsToDerive); |
| 55 }).then(function(result) { | 55 }).then(function(result) { |
| 56 bytesShouldMatchHexString("Derived Bytes", derivedBytesHex, result); | 56 bytesShouldMatchHexString("Derived Bytes", derivedBytesHex, 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> |
| OLD | NEW |