(algorithm, key, signature, data)
| 1219 | } |
| 1220 | |
| 1221 | function verify(algorithm, key, signature, data) { |
| 1222 | return callSubtleCryptoMethod(verifyImpl, this, arguments); |
| 1223 | } |
| 1224 | |
| 1225 | function verifyImpl(algorithm, key, signature, data) { |
| 1226 | const prefix = prepareSubtleMethod(this, 'verify', arguments.length, 4); |
nothing calls this directly
no test coverage detected
searching dependent graphs…