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

Side by Side Diff: LayoutTests/crypto/aes-kw-key-manipulation-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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 Test generating, importing and exporting keys for AES-KW. Test that they can't b e used with another algorithm.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 Generating a key...
7 PASS key.toString() is '[object Key]'
8 PASS key.type is 'secret'
9 PASS key.algorithm.name is 'AES-KW'
10 PASS key.algorithm.length is 256
11
12 Testing that the key can't be used with AES-CBC...
13 error is: InvalidAccessError: key.algorithm does not match that of operation
14
15 Exporting the key to raw...
16 PASS exportedKey.toString() is '[object ArrayBuffer]'
17 Importing it back...
18 PASS importedKey.toString() is '[object Key]'
19 PASS importedKey.type is 'secret'
20 PASS importedKey.algorithm.name is 'AES-KW'
21 PASS importedKey.algorithm.length is 256
22 PASS successfullyParsed is true
23
24 TEST COMPLETE
25
OLDNEW
« no previous file with comments | « LayoutTests/crypto/aes-kw-key-manipulation.html ('k') | LayoutTests/crypto/aes-kw-wrap-unwrap-aes.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698