( algorithm, baseKey, derivedKeyType, extractable, keyUsages)
| 336 | } |
| 337 | |
| 338 | function deriveKey( |
| 339 | algorithm, |
| 340 | baseKey, |
| 341 | derivedKeyType, |
| 342 | extractable, |
| 343 | keyUsages) { |
| 344 | return callSubtleCryptoMethod(deriveKeyImpl, this, arguments); |
| 345 | } |
| 346 | |
| 347 | function deriveKeyImpl( |
| 348 | algorithm, |
nothing calls this directly
no test coverage detected
searching dependent graphs…