| 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("Tests calls to wrapKey() with bad inputs."); | |
| 13 | |
| 14 jsTestIsAsync = true; | |
| 15 | |
| 16 function importWrappingKey() | |
| 17 { | |
| 18 var data = new Uint8Array(16); | |
| 19 var extractable = true; | |
| 20 var keyUsages = ['wrapKey']; | |
| 21 | |
| 22 return crypto.subtle.importKey('raw', data, {name: 'AES-CBC'}, extractable,
keyUsages); | |
| 23 } | |
| 24 | |
| 25 function importKeyToWrap() | |
| 26 { | |
| 27 var data = new Uint8Array(16); | |
| 28 var extractable = true; | |
| 29 var keyUsages = ['sign']; | |
| 30 | |
| 31 return crypto.subtle.importKey('raw', data, {name: 'HMAC', hash: {name: 'SHA
-1'}}, extractable, keyUsages); | |
| 32 } | |
| 33 | |
| 34 importWrappingKey().then(function(result) { | |
| 35 wrappingKey = result; | |
| 36 return importKeyToWrap(); | |
| 37 }).then(function(result) { | |
| 38 key = result; | |
| 39 | |
| 40 wrapAlgorithm = {name: 'aes-cbc', iv: new Uint8Array(16)}; | |
| 41 | |
| 42 // Invalid key | |
| 43 return crypto.subtle.wrapKey('raw', 1, wrappingKey, wrapAlgorithm); | |
| 44 }).then(failAndFinishJSTest, function(result) { | |
| 45 logError(result); | |
| 46 | |
| 47 // Invalid wrappingKey | |
| 48 return crypto.subtle.wrapKey('raw', key, '', wrapAlgorithm); | |
| 49 }).then(failAndFinishJSTest, function(result) { | |
| 50 logError(result); | |
| 51 | |
| 52 // Invalid wrapAlgorithm | |
| 53 return crypto.subtle.wrapKey('raw', key, wrappingKey, undefined); | |
| 54 }).then(failAndFinishJSTest, function(result) { | |
| 55 logError(result); | |
| 56 | |
| 57 // Invalid format for wrapKey | |
| 58 return crypto.subtle.wrapKey('bad-format', key, wrappingKey, wrapAlgorithm); | |
| 59 }).then(failAndFinishJSTest, function(result) { | |
| 60 logError(result); | |
| 61 | |
| 62 // SHA-1 isn't a valid wrapKey algorithm. | |
| 63 return crypto.subtle.wrapKey('raw', key, wrappingKey, {name: 'SHA-1'}); | |
| 64 }).then(failAndFinishJSTest, function(result) { | |
| 65 logError(result); | |
| 66 | |
| 67 // Wrap algorithm doesn't match the wrapping key's algorithm (AES-CBC key | |
| 68 // with AES-CTR wrap algorithm) | |
| 69 aesCtrAlgorithm = {name: 'AES-CTR', counter: new Uint8Array(16), length: 0}; | |
| 70 return crypto.subtle.wrapKey('raw', key, wrappingKey, aesCtrAlgorithm); | |
| 71 }).then(failAndFinishJSTest, function(result) { | |
| 72 logError(result); | |
| 73 }).then(finishJSTest, failAndFinishJSTest); | |
| 74 | |
| 75 </script> | |
| 76 | |
| 77 </body> | |
| 78 </html> | |
| OLD | NEW |