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

Unified Diff: LayoutTests/crypto/ec-export-public-key.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/ec-export-public-key.html
diff --git a/LayoutTests/crypto/ec-export-public-key.html b/LayoutTests/crypto/ec-export-public-key.html
deleted file mode 100644
index 25f3aaa1569a683e41b00098139f9673504422fd..0000000000000000000000000000000000000000
--- a/LayoutTests/crypto/ec-export-public-key.html
+++ /dev/null
@@ -1,49 +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("Test exporting a public EC key.");
-
-jsTestIsAsync = true;
-
-var extractable = true;
-
-var publicKeySpkiHex = "3059301306072A8648CE3D020106082A8648CE3D030107034200049CB0CF69303DAFC761D4E4687B4ECF039E6D34AB964AF80810D8D558A4A8D6F72D51233A1788920A86EE08A1962C79EFA317FB7879E297DAD2146DB995FA1C78";
-
-debug("\nImporting a SPKI key...");
-crypto.subtle.importKey("spki", hexStringToUint8Array(publicKeySpkiHex), {name: "ECDSA", namedCurve: "P-256"}, extractable, ['verify']).then(function(result) {
- key = result;
-
- debug("\nExporting the key as JWK...");
- return crypto.subtle.exportKey("jwk", key);
-}).then(function(result) {
- exportedJWK = result;
-
- shouldEvaluateAs("exportedJWK.kty", "EC");
- shouldEvaluateAs("exportedJWK.crv", "P-256");
- shouldEvaluateAs("exportedJWK.x", "nLDPaTA9r8dh1ORoe07PA55tNKuWSvgIENjVWKSo1vc");
- shouldEvaluateAs("exportedJWK.y", "LVEjOheIkgqG7gihlix576MX-3h54pfa0hRtuZX6HHg");
- shouldBe("exportedJWK.alg", "undefined");
- shouldBe("exportedJWK.ext", "true");
- shouldBe("exportedJWK.key_ops", "['verify']");
- shouldBe("exportedJWK.use", "undefined");
-
- debug("\nExporting the key as SPKI...");
- return crypto.subtle.exportKey("spki", key);
-}).then(function(result) {
- exportedSpki = result;
-
- bytesShouldMatchHexString("exportedSpki", publicKeySpkiHex, exportedSpki);
-}).then(finishJSTest, failAndFinishJSTest);
-
-</script>
-
-</body>
-</html>
« no previous file with comments | « LayoutTests/crypto/ec-export-private-key-expected.txt ('k') | LayoutTests/crypto/ec-export-public-key-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698