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

Unified Diff: LayoutTests/crypto/deserialize-legacy-aes-key-empty-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/deserialize-legacy-aes-key-empty-usages.html
diff --git a/LayoutTests/crypto/deserialize-legacy-aes-key-empty-usages.html b/LayoutTests/crypto/deserialize-legacy-aes-key-empty-usages.html
deleted file mode 100644
index 4f8caceee8bbf331478836f34b2f6a80ea73d32c..0000000000000000000000000000000000000000
--- a/LayoutTests/crypto/deserialize-legacy-aes-key-empty-usages.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../resources/js-test.js"></script>
-<script src="resources/common.js"></script>
-</head>
-<body>
-<script>
-description("Check that an already imported key with empty usages can be deserialized.");
-
-// It used to be possible to import keys with empty usages, it is possible that
-// such keys were persisted to storage. This test verifies that such keys can
-// still be successfully de-serialized.
-
-// The version number of the serialized format used is 7.
-
-var serializedKey = "ff073f004b010110011030112233445566778899aabbccddeeff";
-
-var key = internals.deserializeBuffer(hexStringToUint8Array(serializedKey).buffer);
-
-shouldBeEqualToString("key.type", "secret");
-shouldBeTrue("key.extractable");
-shouldBeEqualToString("key.algorithm.name", "AES-CBC");
-shouldBe("key.usages", "[]");
-
-</script>
-</body>
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698