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

Unified Diff: LayoutTests/crypto/subtle/rsa-oaep-encrypt-failures.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/rsa-oaep-encrypt-failures.html
diff --git a/LayoutTests/crypto/subtle/rsa-oaep-encrypt-failures.html b/LayoutTests/crypto/subtle/rsa-oaep-encrypt-failures.html
deleted file mode 100644
index 9a458fef17be3269c2108665d08665714d98fecb..0000000000000000000000000000000000000000
--- a/LayoutTests/crypto/subtle/rsa-oaep-encrypt-failures.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../../resources/js-test.js"></script>
-<script src="resources/common.js"></script>
-<script src="resources/keys.js"></script>
-</head>
-<body>
-<p id="description"></p>
-<div id="console"></div>
-
-<script>
-description("Tests bad algorithm inputs for RSA-OAEP encrypt");
-
-jsTestIsAsync = true;
-
-var data = new Uint8Array(16);
-
-function importPublicKey()
-{
- var usages = ['encrypt'];
- var extractable = true;
-
- var importData = hexStringToUint8Array(kKeyData.rsa1.spki);
- var importAlgorithm = { name: 'rsa-oaep', hash: {name: 'SHA-256'} };
-
- return crypto.subtle.importKey('spki', importData, importAlgorithm, extractable, usages);
-}
-
-Promise.resolve(null).then(function(result) {
- return importPublicKey();
-}).then(function(result) {
- publicKey = result;
-
- shouldEvaluateAs("publicKey.algorithm.name", "RSA-OAEP");
- shouldEvaluateAs("publicKey.algorithm.hash.name", "SHA-256");
- shouldEvaluateAs("publicKey.type", "public");
- shouldEvaluateAs("publicKey.extractable", true);
- shouldEvaluateAs("publicKey.usages.join(',')", "encrypt");
-
- return crypto.subtle.encrypt({name: "rsa-oaep", label: -1}, publicKey, data);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- return crypto.subtle.encrypt({name: "rsa-oaep", label: "foo"}, publicKey, data);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-}).then(finishJSTest, failAndFinishJSTest);
-
-</script>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698