(ciphertext)
| 56 | } |
| 57 | |
| 58 | function encryptedTrace(ciphertext) { |
| 59 | return { |
| 60 | encrypted: true, |
| 61 | algorithm: 'aes-256-gcm', |
| 62 | payload_schema: 'prism_trace_row', |
| 63 | iv: 'aXYxMjM0NTY3ODkw', |
| 64 | tag: 'dGFnMTIzNDU2Nzg5MA==', |
| 65 | ciphertext, |
| 66 | }; |
| 67 | } |
| 68 | |
| 69 | describe('EvoMapProxy proxy trace integration', () => { |
| 70 | let dir; |
no outgoing calls
no test coverage detected