(algorithm)
| 6 | } |
| 7 | |
| 8 | async function makeKey(algorithm) { |
| 9 | const keyData = new Uint8Array([]); |
| 10 | return crypto.subtle.importKey("raw", keyData, algorithm, false, ["deriveBits"]); |
| 11 | } |
| 12 | |
| 13 | promise_test(async (t) => { |
| 14 | const algorithm = { |
no outgoing calls
no test coverage detected