Chromium Code Reviews| Index: LayoutTests/crypto/importKey-deserialized.html |
| diff --git a/LayoutTests/crypto/importKey-deserialized.html b/LayoutTests/crypto/importKey-deserialized.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4f8caceee8bbf331478836f34b2f6a80ea73d32c |
| --- /dev/null |
| +++ b/LayoutTests/crypto/importKey-deserialized.html |
| @@ -0,0 +1,29 @@ |
| +<!DOCTYPE html> |
|
eroman
2014/12/17 21:08:43
This name is still not good.
The test's name shoul
Habib Virji
2014/12/18 09:36:38
Done.
|
| +<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> |
| + |