4 <script src=
"../../resources/js-test.js"></script>
5 <script src=
"resources/common.js"></script>
8 <p id=
"description"></p>
9 <div id=
"console"></div>
12 description("Tests calls to wrapKey() with bad inputs.");
16 function importWrappingKey()
18 var data
= new Uint8Array(16);
19 var extractable
= true;
20 var keyUsages
= ['wrapKey'];
22 return crypto
.subtle
.importKey('raw', data
, {name
: 'AES-CBC'}, extractable
, keyUsages
);
25 function importKeyToWrap()
27 var data
= new Uint8Array(16);
28 var extractable
= true;
29 var keyUsages
= ['sign'];
31 return crypto
.subtle
.importKey('raw', data
, {name
: 'HMAC', hash
: {name
: 'SHA-1'}}, extractable
, keyUsages
);
34 importWrappingKey().then(function(result
) {
36 return importKeyToWrap();
37 }).then(function(result
) {
40 wrapAlgorithm
= {name
: 'aes-cbc', iv
: new Uint8Array(16)};
43 return crypto
.subtle
.wrapKey('raw', 1, wrappingKey
, wrapAlgorithm
);
44 }).then(failAndFinishJSTest
, function(result
) {
47 // Invalid wrappingKey
48 return crypto
.subtle
.wrapKey('raw', key
, '', wrapAlgorithm
);
49 }).then(failAndFinishJSTest
, function(result
) {
52 // Invalid wrapAlgorithm
53 return crypto
.subtle
.wrapKey('raw', key
, wrappingKey
, undefined);
54 }).then(failAndFinishJSTest
, function(result
) {
57 // Invalid format for wrapKey
58 return crypto
.subtle
.wrapKey('bad-format', key
, wrappingKey
, wrapAlgorithm
);
59 }).then(failAndFinishJSTest
, function(result
) {
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
) {
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
) {
73 }).then(finishJSTest
, failAndFinishJSTest
);