(name, length, hash, ...usages)
| 14 | const { subtle } = globalThis.crypto; |
| 15 | |
| 16 | function getDeriveKeyInfo(name, length, hash, ...usages) { |
| 17 | return [{ name, length, hash }, usages]; |
| 18 | } |
| 19 | |
| 20 | const kDerivedKeyTypes = [ |
| 21 | ['AES-CBC', 128, undefined, 'encrypt', 'decrypt'], |
no outgoing calls
no test coverage detected