blob: ab0436bc5836d45b025dd54176972884a4d476fb [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../resources/js-test.js"></script>
<script src="resources/common.js"></script>
</head>
<body>
<p id="description"></p>
<div id="console"></div>
<script>
description("Tests that wrapping keys must have the 'wrapKey' usage.");
jsTestIsAsync = true;
function importWrappingKey()
{
var data = new Uint8Array(16);
var extractable = true;
var keyUsages = ['encrypt'];
return crypto.subtle.importKey('raw', data, {name: 'AES-CBC'}, extractable, keyUsages);
}
function importKeyToWrap()
{
var data = new Uint8Array(16);
var extractable = true;
var keyUsages = ['sign'];
return crypto.subtle.importKey('raw', data, {name: 'HMAC', hash: {name: 'SHA-1'}}, extractable, keyUsages);
}
importWrappingKey().then(function(result) {
wrappingKey = result;
return importKeyToWrap();
}).then(function(result) {
key = result;
wrapAlgorithm = {name: 'aes-cbc', iv: new Uint8Array(16)};
return crypto.subtle.wrapKey('raw', key, wrappingKey, wrapAlgorithm);
}).then(failAndFinishJSTest, function(result) {
logError(result);
}).then(finishJSTest, failAndFinishJSTest);
</script>
</body>
</html>