OLD | NEW |
1 Tests cypto.subtle.importKey. | 1 Tests cypto.subtle.importKey. |
2 | 2 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 4 |
5 | 5 |
6 PASS key.type is 'secret' | 6 PASS key.type is 'secret' |
7 PASS key.extractable is true | 7 PASS key.extractable is true |
8 PASS key.algorithm.name is 'HMAC' | 8 PASS key.algorithm.name is 'HMAC' |
9 PASS key.algorithm.hash.name is 'SHA-256' | 9 PASS key.algorithm.hash.name is 'SHA-256' |
10 PASS key.usages.join(',') is 'encrypt,sign' | 10 PASS key.usages.join(',') is 'encrypt,sign' |
11 PASS key.type is 'secret' | 11 PASS key.type is 'secret' |
12 PASS key.extractable is true | 12 PASS key.extractable is true |
13 PASS key.algorithm.name is 'AES-CBC' | 13 PASS key.algorithm.name is 'AES-CBC' |
14 PASS key.usages.join(',') is '' | 14 PASS key.usages.join(',') is '' |
15 PASS key.type is 'secret' | 15 PASS key.type is 'secret' |
16 PASS key.extractable is false | 16 PASS key.extractable is false |
17 PASS key.algorithm.name is 'AES-CBC' | 17 PASS key.algorithm.name is 'AES-CBC' |
18 PASS key.usages.join(',') is '' | 18 PASS key.usages.join(',') is '' |
19 rejected with null | 19 rejected with null |
20 rejected with null | 20 rejected with null |
21 PASS crypto.subtle.importKey('invalid format', data, algorithm, extractable, key
Usages) threw exception TypeError: Invalid keyFormat argument. | 21 PASS crypto.subtle.importKey('invalid format', data, algorithm, extractable, key
Usages) threw exception TypeError: Failed to execute 'importKey' on 'SubtleCrypt
o': Invalid keyFormat argument. |
22 PASS crypto.subtle.importKey(keyFormat, data, algorithm, extractable, ['SIGN'])
threw exception TypeError: Invalid keyUsages argument. | 22 PASS crypto.subtle.importKey(keyFormat, data, algorithm, extractable, ['SIGN'])
threw exception TypeError: Failed to execute 'importKey' on 'SubtleCrypto': Inva
lid keyUsages argument. |
23 PASS crypto.subtle.importKey('invalid format', data, algorithm, extractable, ['S
IGN']) threw exception TypeError: Invalid keyFormat argument. | 23 PASS crypto.subtle.importKey('invalid format', data, algorithm, extractable, ['S
IGN']) threw exception TypeError: Failed to execute 'importKey' on 'SubtleCrypto
': Invalid keyFormat argument. |
24 PASS crypto.subtle.importKey(keyFormat, [], algorithm, extractable, keyUsages) t
hrew exception TypeError: Invalid keyData argument. | 24 PASS crypto.subtle.importKey(keyFormat, [], algorithm, extractable, keyUsages) t
hrew exception TypeError: Failed to execute 'importKey' on 'SubtleCrypto': Inval
id keyData argument. |
25 PASS crypto.subtle.importKey(keyFormat, null, algorithm, extractable, keyUsages)
threw exception TypeError: Invalid keyData argument. | 25 PASS crypto.subtle.importKey(keyFormat, null, algorithm, extractable, keyUsages)
threw exception TypeError: Failed to execute 'importKey' on 'SubtleCrypto': Inv
alid keyData argument. |
26 PASS crypto.subtle.importKey(keyFormat, data, {name: 'hmac'}, extractable, keyUs
ages) threw exception TypeError: Failed to execute 'importKey' on 'SubtleCrypto'
: Algorithm: HMAC: HmacParams: hash: Missing or not a dictionary. | 26 PASS crypto.subtle.importKey(keyFormat, data, {name: 'hmac'}, extractable, keyUs
ages) threw exception TypeError: Failed to execute 'importKey' on 'SubtleCrypto'
: Algorithm: HMAC: HmacParams: hash: Missing or not a dictionary. |
27 PASS crypto.subtle.importKey(keyFormat, data, {name: 'sha-1'}, extractable, keyU
sages) threw exception NotSupportedError: Failed to execute 'importKey' on 'Subt
leCrypto': Algorithm: SHA-1: Unsupported operation. | 27 PASS crypto.subtle.importKey(keyFormat, data, {name: 'sha-1'}, extractable, keyU
sages) threw exception NotSupportedError: Failed to execute 'importKey' on 'Subt
leCrypto': Algorithm: SHA-1: Unsupported operation. |
28 PASS successfullyParsed is true | 28 PASS successfullyParsed is true |
29 | 29 |
30 TEST COMPLETE | 30 TEST COMPLETE |
31 | 31 |
OLD | NEW |