| 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 structured de-cloning of empty HMAC keys"); |  12 description("Tests structured de-cloning of empty HMAC keys"); | 
|  13  |  13  | 
|  14 // It used to be possible to import empty HMAC keys, so it is possible that |  14 // It used to be possible to import empty HMAC keys, so it is possible that | 
|  15 // such keys were persisted to storage. This test verifies that such keys can |  15 // such keys were persisted to storage. This test verifies that such keys can | 
|  16 // still be successfully de-serialized. |  16 // still be successfully de-serialized. | 
|  17 // |  17 // | 
|  18 // The version number of the serialized format used is 7. |  18 // The version number of the serialized format used is 7. | 
|  19  |  19  | 
|  20 var serializedKeyHex = "ff073f004b0200050900"; |  20 var serializedKeyHex = "ff073f004b0200050900"; | 
|  21  |  21  | 
|  22 key = internals.deserializeBuffer(hexStringToUint8Array(serializedKeyHex).buffer
    ); |  22 key = internals.deserializeBuffer(hexStringToUint8Array(serializedKeyHex).buffer
    ); | 
|  23  |  23  | 
|  24 shouldEvaluateAs("key.type", "secret"); |  24 shouldEvaluateAs("key.type", "secret"); | 
|  25 shouldEvaluateAs("key.extractable", true); |  25 shouldEvaluateAs("key.extractable", true); | 
|  26 shouldEvaluateAs("key.algorithm.name", "HMAC"); |  26 shouldEvaluateAs("key.algorithm.name", "HMAC"); | 
|  27 shouldEvaluateAs("key.algorithm.length", 0); |  27 shouldEvaluateAs("key.algorithm.length", 0); | 
|  28 shouldEvaluateAs("key.algorithm.hash.name", "SHA-1"); |  28 shouldEvaluateAs("key.algorithm.hash.name", "SHA-1"); | 
|  29 shouldEvaluateAs("key.usages.toString()", "sign"); |  29 shouldEvaluateAs("key.usages.toString()", "sign"); | 
|  30  |  30  | 
|  31 </script> |  31 </script> | 
|  32  |  32  | 
|  33 </body> |  33 </body> | 
|  34 </html> |  34 </html> | 
| OLD | NEW |