| 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 'private' | 6 PASS key.type is 'private' |
| 7 PASS key.extractable is true | 7 PASS key.extractable is true |
| 8 PASS key.algorithm.name is 'SHA-256' | 8 PASS key.algorithm.name is 'SHA-256' |
| 9 PASS key.usages.join(',') is 'encrypt,sign' | 9 PASS key.usages.join(',') is 'encrypt,sign' |
| 10 PASS key.type is 'private' | 10 PASS key.type is 'private' |
| 11 PASS key.extractable is true | 11 PASS key.extractable is true |
| 12 PASS key.algorithm.name is 'SHA-256' | 12 PASS key.algorithm.name is 'SHA-256' |
| 13 PASS key.usages.join(',') is '' | 13 PASS key.usages.join(',') is '' |
| 14 PASS key.type is 'private' | 14 PASS key.type is 'private' |
| 15 PASS key.extractable is false | 15 PASS key.extractable is false |
| 16 PASS key.algorithm.name is 'SHA-256' | 16 PASS key.algorithm.name is 'SHA-256' |
| 17 PASS key.usages.join(',') is '' | 17 PASS key.usages.join(',') is '' |
| 18 PASS key.type is 'public' | 18 PASS key.type is 'public' |
| 19 PASS key.extractable is false | 19 PASS key.extractable is false |
| 20 PASS key.algorithm.name is 'SHA-256' | 20 PASS key.algorithm.name is 'SHA-256' |
| 21 PASS key.usages.join(',') is '' | 21 PASS key.usages.join(',') is '' |
| 22 PASS key.type is 'public' | 22 PASS key.type is 'public' |
| 23 PASS key.extractable is false | 23 PASS key.extractable is false |
| 24 PASS key.algorithm.name is 'SHA-256' | 24 PASS key.algorithm.name is 'SHA-256' |
| 25 PASS key.usages.join(',') is '' | 25 PASS key.usages.join(',') is '' |
| 26 rejected with null | 26 rejected with null |
| 27 PASS crypto.subtle.importKey(keyFormat, data, algorithm, extractable, keyUsages)
threw exception NotSupportedError: The implementation did not support the reque
sted type of object or operation.. | 27 PASS crypto.subtle.importKey(keyFormat, data, algorithm, extractable, keyUsages)
threw exception NotSupportedError: The implementation did not support the reque
sted type of object or operation.. |
| 28 PASS crypto.subtle.importKey('invalid format', data, algorithm, extractable, key
Usages) threw exception TypeError: Type error. | 28 PASS crypto.subtle.importKey('invalid format', data, algorithm, extractable, key
Usages) threw exception TypeError: Type error. |
| 29 PASS crypto.subtle.importKey(keyFormat, data, algorithm, extractable, ['SIGN'])
threw exception TypeError: Type error. | 29 PASS crypto.subtle.importKey(keyFormat, data, algorithm, extractable, ['SIGN'])
threw exception TypeError: Type error. |
| 30 PASS crypto.subtle.importKey(keyFormat, [], algorithm, extractable, keyUsages) t
hrew exception TypeError: Type error. |
| 31 PASS crypto.subtle.importKey(keyFormat, null, algorithm, extractable, keyUsages)
threw exception TypeError: Type error. |
| 30 PASS successfullyParsed is true | 32 PASS successfullyParsed is true |
| 31 | 33 |
| 32 TEST COMPLETE | 34 TEST COMPLETE |
| 33 | 35 |
| OLD | NEW |