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

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

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 unified diff | Download patch
OLDNEW
(Empty)
1 Test exporting keys with various usages to JWK.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 encrypt:
7 PASS jwk.use is undefined
8 PASS jwk.key_ops is ["encrypt"]
9
10 decrypt:
11 PASS jwk.use is undefined
12 PASS jwk.key_ops is ["decrypt"]
13
14 encrypt,decrypt:
15 PASS jwk.use is undefined
16 PASS jwk.key_ops is ["encrypt","decrypt"]
17
18 wrapKey:
19 PASS jwk.use is undefined
20 PASS jwk.key_ops is ["wrapKey"]
21
22 unwrapKey:
23 PASS jwk.use is undefined
24 PASS jwk.key_ops is ["unwrapKey"]
25
26 wrapKey,unwrapKey:
27 PASS jwk.use is undefined
28 PASS jwk.key_ops is ["wrapKey","unwrapKey"]
29
30 encrypt,decrypt,wrapKey:
31 PASS jwk.use is undefined
32 PASS jwk.key_ops is ["encrypt","decrypt","wrapKey"]
33
34 encrypt,decrypt,wrapKey,unwrapKey:
35 PASS jwk.use is undefined
36 PASS jwk.key_ops is ["encrypt","decrypt","wrapKey","unwrapKey"]
37
38 sign:
39 PASS jwk.use is undefined
40 PASS jwk.key_ops is ["sign"]
41
42 verify:
43 PASS jwk.use is undefined
44 PASS jwk.key_ops is ["verify"]
45
46 sign,verify:
47 PASS jwk.use is undefined
48 PASS jwk.key_ops is ["sign","verify"]
49
50 PASS successfullyParsed is true
51
52 TEST COMPLETE
53
OLDNEW
« 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