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

Unified Diff: LayoutTests/crypto/jwk-export-use-values-expected.txt

Issue 298023002: [webcrypto] Import WebKit's webcrypto tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove FIXME for unrecognized jwk usages (supported now) Created 6 years, 6 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
« no previous file with comments | « LayoutTests/crypto/jwk-export-use-values.html ('k') | LayoutTests/crypto/jwk-import-use-values.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/crypto/jwk-export-use-values-expected.txt
diff --git a/LayoutTests/crypto/jwk-export-use-values-expected.txt b/LayoutTests/crypto/jwk-export-use-values-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..4737dafd0f8105652b5c9881d80a35df030d564e
--- /dev/null
+++ b/LayoutTests/crypto/jwk-export-use-values-expected.txt
@@ -0,0 +1,53 @@
+Test exporting keys with various usages to JWK.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+encrypt:
+PASS jwk.use is undefined
+PASS jwk.key_ops is ["encrypt"]
+
+decrypt:
+PASS jwk.use is undefined
+PASS jwk.key_ops is ["decrypt"]
+
+encrypt,decrypt:
+PASS jwk.use is undefined
+PASS jwk.key_ops is ["encrypt","decrypt"]
+
+wrapKey:
+PASS jwk.use is undefined
+PASS jwk.key_ops is ["wrapKey"]
+
+unwrapKey:
+PASS jwk.use is undefined
+PASS jwk.key_ops is ["unwrapKey"]
+
+wrapKey,unwrapKey:
+PASS jwk.use is undefined
+PASS jwk.key_ops is ["wrapKey","unwrapKey"]
+
+encrypt,decrypt,wrapKey:
+PASS jwk.use is undefined
+PASS jwk.key_ops is ["encrypt","decrypt","wrapKey"]
+
+encrypt,decrypt,wrapKey,unwrapKey:
+PASS jwk.use is undefined
+PASS jwk.key_ops is ["encrypt","decrypt","wrapKey","unwrapKey"]
+
+sign:
+PASS jwk.use is undefined
+PASS jwk.key_ops is ["sign"]
+
+verify:
+PASS jwk.use is undefined
+PASS jwk.key_ops is ["verify"]
+
+sign,verify:
+PASS jwk.use is undefined
+PASS jwk.key_ops is ["sign","verify"]
+
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
« no previous file with comments | « LayoutTests/crypto/jwk-export-use-values.html ('k') | LayoutTests/crypto/jwk-import-use-values.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698