Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Unified Diff: LayoutTests/crypto/aes-key-usages.html

Issue 806913006: [WebCrypto] Move LayoutTests from crypto to crypto/subtle (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update path for deserialize legacy tests Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/crypto/aes-key-usages.html
diff --git a/LayoutTests/crypto/aes-key-usages.html b/LayoutTests/crypto/aes-key-usages.html
deleted file mode 100644
index 3ed96f52be33b995eca1bf4dfe347a5821e76bf1..0000000000000000000000000000000000000000
--- a/LayoutTests/crypto/aes-key-usages.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<!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("Make sure that the usages of an AES key are respected");
-
-jsTestIsAsync = true;
-
-var data = asciiToUint8Array("hello");
-var iv = new Uint8Array(16);
-
-function importKeyExcludingUsage(usage)
-{
- var algorithm = {name: 'aes-cbc'};
- var extractable = false;
- var keyData = hexStringToUint8Array("2b7e151628aed2a6abf7158809cf4f3c");
-
- var usages = ["encrypt", "decrypt", "wrapKey", "unwrapKey"];
- for (var i in usages) {
- if (usages[i] == usage) {
- usages.splice(i, 1);
- break;
- }
- }
-
- return crypto.subtle.importKey('raw', keyData, algorithm, extractable, usages);
-}
-
-function testEncrypt()
-{
- return importKeyExcludingUsage("encrypt").then(function(key) {
- return crypto.subtle.encrypt({name: 'AES-CBC', iv: iv}, key, data);
- }).then(failAndFinishJSTest, function(result) {
- logError(result);
- });
-}
-
-function testDecrypt()
-{
- return importKeyExcludingUsage("decrypt").then(function(key) {
- return crypto.subtle.decrypt({name: 'AES-CBC', iv: iv}, key, data);
- }).then(failAndFinishJSTest, function(result) {
- logError(result);
- });
-}
-
-// FIXME: Add wrapKey() and unwrapKey()
-
-testEncrypt().then(testDecrypt).then(finishJSTest, failAndFinishJSTest);
-
-</script>
-
-</body>
-</html>
« no previous file with comments | « LayoutTests/crypto/aes-key-algorithm-mismatch-expected.txt ('k') | LayoutTests/crypto/aes-key-usages-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698