(algorithm, baseKey, length = null)
| 245 | } |
| 246 | |
| 247 | function deriveBits(algorithm, baseKey, length = null) { |
| 248 | return callSubtleCryptoMethod(deriveBitsImpl, this, arguments); |
| 249 | } |
| 250 | |
| 251 | function deriveBitsImpl(algorithm, baseKey, length = null) { |
| 252 | const prefix = prepareSubtleMethod(this, 'deriveBits', arguments.length, 2); |
nothing calls this directly
no test coverage detected
searching dependent graphs…