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

Unified Diff: LayoutTests/crypto/subtle/hmac-import-jwk.html

Issue 957713004: [WebCrypto] Split LayoutTests/crypto/subtle into per-algorithm directories (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated to latest master Created 5 years, 10 months 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/subtle/hmac-import-jwk.html
diff --git a/LayoutTests/crypto/subtle/hmac-import-jwk.html b/LayoutTests/crypto/subtle/hmac-import-jwk.html
deleted file mode 100644
index 4b32bca46e0c85003758af2e72aa2aae5c11b1df..0000000000000000000000000000000000000000
--- a/LayoutTests/crypto/subtle/hmac-import-jwk.html
+++ /dev/null
@@ -1,52 +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 importing a JWK key for HMAC.");
-
-jsTestIsAsync = true;
-
-var nonExtractable = false;
-var extractable = true;
-
-var hmacKey = {
- "kty": "oct",
- "alg": "HS256",
- "use": "sig",
- "ext": false,
- "k": "ahjkn-_387fgnsibf23qsvahjkn-_387fgnsibf23qs"
-};
-
-debug("Importing a key...\n");
-crypto.subtle.importKey("jwk", hmacKey, {name: "HMAC", hash: {name: "SHA-256"}}, nonExtractable, ["sign", "verify"]).then(function(result) {
- key = result;
-
- shouldBe("key.type", "'secret'");
- shouldBe("key.extractable", "false");
- shouldBe("key.algorithm.name", "'HMAC'");
- shouldBe("key.algorithm.length", "256");
- shouldBe("key.usages", '["sign", "verify"]');
-
- debug("\nUsing the key to sign message 'foo'...");
- return crypto.subtle.sign(key.algorithm, key, asciiToUint8Array('foo'));
-}).then(function(result) {
- signature = result;
- shouldBe("bytesToHexString(new Uint8Array(signature))", "'e03736fe098892b2a2da77812431f7c014d32e2fd69f3bcff883ac923a8fa2da'");
-
- debug("\nVerifying the signature...");
- return crypto.subtle.verify(key.algorithm, key, result, asciiToUint8Array('foo'));
-}).then(function(result) {
- verificationResult = result;
- shouldBe("verificationResult", "true");
-}).then(finishJSTest, failAndFinishJSTest);
-</script>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698