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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
<!DOCTYPE html>
<html>
<head>
<title>WebCrypto Test Suite</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link rel="stylesheet" href="./test_WebCrypto.css"/>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<!-- Utilities for manipulating ABVs -->
<script src="util.js"></script>
<!-- A simple wrapper around IndexedDB -->
<script src="simpledb.js"></script>
<!-- Test vectors drawn from the literature -->
<script src="./test-vectors.js"></script>
<!-- General testing framework -->
<script src="./test-array.js"></script>
<script>/* <![CDATA[*/
"use strict";
// -----------------------------------------------------------------------------
TestArray.addTest(
"Send a CryptoKey to a Worker and use it to encrypt data",
function() {
var worker = new Worker(`data:text/plain,
onmessage = ({data: {key, data, nonce}}) => {
var alg = { name: "AES-GCM", iv: nonce };
crypto.subtle.encrypt(alg, key, data).then(postMessage);
};
`);
var data = crypto.getRandomValues(new Uint8Array(128));
var nonce = crypto.getRandomValues(new Uint8Array(16));
var alg = { name: "AES-GCM", length: 128 };
var that = this;
// Generate a new AES key.
crypto.subtle.generateKey(alg, false, ["encrypt", "decrypt"]).then(key => {
// Wait for ciphertext, check and decrypt.
worker.addEventListener("message", ({data: ciphertext}) => {
crypto.subtle.decrypt({ name: "AES-GCM", iv: nonce }, key, ciphertext)
.then(memcmp_complete(that, data), error(that));
});
// Send it to the worker.
worker.postMessage({key, data, nonce});
});
}
);
// -----------------------------------------------------------------------------
TestArray.addTest(
"Get a CryptoKey from a Worker and encrypt/decrypt data",
function() {
var worker = new Worker(`data:text/plain,
var alg = { name: "AES-GCM", length: 128 };
crypto.subtle.generateKey(alg, false, ["encrypt", "decrypt"])
.then(postMessage);
`);
var data = crypto.getRandomValues(new Uint8Array(128));
var nonce = crypto.getRandomValues(new Uint8Array(16));
var alg = { name: "AES-GCM", iv: nonce };
var that = this;
// Wait for the key from the worker.
worker.addEventListener("message", ({data: key}) => {
// Encrypt some data with the key.
crypto.subtle.encrypt(alg, key, data).then(ciphertext => {
// Verify and decrypt.
crypto.subtle.decrypt(alg, key, ciphertext)
.then(memcmp_complete(that, data), error(that));
});
});
}
);
// -----------------------------------------------------------------------------
TestArray.addTest(
"Web crypto in terminating Worker",
function() {
var worker = new Worker(`data:text/plain,
function infiniteEncrypt(key, data, nonce) {
var alg = { name: "AES-GCM", iv: nonce };
return crypto.subtle.encrypt(alg, key, data).then(_ => {
infiniteEncrypt(key, data, nonce);
});
}
onmessage = ({data: {key, data, nonce}}) => {
infiniteEncrypt(key, data, nonce);
postMessage("started");
};
`);
var data = crypto.getRandomValues(new Uint8Array(128));
var nonce = crypto.getRandomValues(new Uint8Array(16));
var alg = { name: "AES-GCM", length: 128 };
var that = this;
// Generate a new AES key.
crypto.subtle.generateKey(alg, false, ["encrypt", "decrypt"]).then(key => {
worker.addEventListener("message", ({data: msg}) => {
if (msg === "started") {
// Terminate the worker while its busy doing crypto work
worker.terminate();
worker = null;
// Just end the test immediate since we can't receive any
// more messages from the worker after calling terminate().
// If we haven't crashed, then the test is a success.
that.complete(true);
}
});
// Send it to the worker.
worker.postMessage({key, data, nonce});
});
}
);
/* ]]>*/</script>
</head>
<body>
<div id="content">
<div id="head">
<b>Web</b>Crypto<br>
</div>
<div id="start" onclick="start();">RUN ALL</div>
<div id="resultDiv" class="content">
Summary:
<span class="pass"><span id="passN">0</span> passed, </span>
<span class="fail"><span id="failN">0</span> failed, </span>
<span class="pending"><span id="pendingN">0</span> pending.</span>
<br/>
<br/>
<table id="results">
<tr>
<th>Test</th>
<th>Result</th>
<th>Time</th>
</tr>
</table>
</div>
<div id="foot"></div>
</div>
</body>
</html>
|