()
| 15 | const hash = () => crypto.createSign('sha256'); |
| 16 | const hmac = () => crypto.createHmac('sha256', key); |
| 17 | const sign = () => crypto.createSign('sha256'); |
| 18 | const verify = () => crypto.createVerify('sha256'); |
| 19 | |
| 20 | for (const f of [cipher, decipher, hash, hmac, sign, verify]) |
no outgoing calls
no test coverage detected
searching dependent graphs…