-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimport-aes-key-bad-length.html
executable file
·70 lines (59 loc) · 2.86 KB
/
import-aes-key-bad-length.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<html>
<head>
<script type="text/javascript" src="DJS/encoding.js"></script>
<script type="text/javascript" src="DJS/hashing.js"></script>
<script type="text/javascript" src="DJS/aes.js"></script>
<script type="text/javascript" src="DJS/rsa.js"></script>
<script type="text/javascript" src="asn1JS.js"></script>
<script type="text/javascript" src="functions.js"></script>
<script type="text/javascript" src="algorithms.js"></script>
<script type="text/javascript" src="Key.js"></script>
<script type="text/javascript" src="generateKey.js"></script>
<script type="text/javascript" src="sign.js"></script>
<script type="text/javascript" src="decrypt.js"></script>
<script type="text/javascript" src="encrypt.js"></script>
<script type="text/javascript" src="exportKey.js"></script>
<script type="text/javascript" src="importKey.js"></script>
<script type="text/javascript" src="verify.js"></script>
<script type="text/javascript" src="digest.js"></script>
<script type="text/javascript" src="deriveKey.js"></script>
<script type="text/javascript" src="wrapKey.js"></script>
<script type="text/javascript" src="unwrapKey.js"></script>
<script type="text/javascript" src="resources/common.js"></script>
<script type="text/javascript" src="resources/js-test.js"></script>
<script type="text/javascript" src="subtleinriacrypto.js"></script>
<script type="text/javascript">
function init(){
window.crypto = inriacrypto;
var kUnsupportedKeyLengths = [
0, 1, 15, 17, 31, 33, 23, 25, 64
];
// Not exhaustive
var kAesAlgorithms = [
"AES-CBC"
];
function testInvalidKeyImport(algorithmName, keyLengthBytes)
{
var algorithm = {name: algorithmName};
var keyData = new Uint8Array(keyLengthBytes);
var usages = ['encrypt', 'decrypt'];
var extractable = false;
return inriacrypto.subtle.importKey('raw', keyData, algorithm, extractable, usages).then(function(result) {
debug("FAIL: Successfully imported " + algorithmName + " key of length " + keyData.byteLength + " bytes");
}, function(result) {
debug("PASS: Failed to import " + algorithmName + " key of length " + keyData.byteLength + " bytes");
});
}
var lastPromise = Promise.resolve(null);
kAesAlgorithms.forEach(function(algorithmName) {
kUnsupportedKeyLengths.forEach(function(keyLengthBytes) {
lastPromise = lastPromise.then(testInvalidKeyImport.bind(null, algorithmName, keyLengthBytes));
});
});
lastPromise.then(finishJSTest, failAndFinishJSTest);
}
</script>
</head>
<body onload="init()">
</body>
</html>