(key)
| 31 | }); |
| 32 | |
| 33 | function decrypt(key) { |
| 34 | const decrypted = privateDecrypt(key, encrypted); |
| 35 | assert.deepStrictEqual(decrypted, expected); |
| 36 | } |
| 37 | |
| 38 | decrypt(pkey); |
| 39 | assert.throws(() => decrypt(pkeyEncrypted), hasOpenSSL3 ? |
no outgoing calls
no test coverage detected