( format, keyData, algorithm, extractable, keyUsages)
| 982 | } |
| 983 | |
| 984 | function importKey( |
| 985 | format, |
| 986 | keyData, |
| 987 | algorithm, |
| 988 | extractable, |
| 989 | keyUsages) { |
| 990 | return callSubtleCryptoMethod(importKeyImpl, this, arguments); |
| 991 | } |
| 992 | |
| 993 | function importKeyImpl( |
| 994 | format, |
nothing calls this directly
no test coverage detected
searching dependent graphs…