(query)
| 571 | export const encrypt = (msg) => crypt(msg, SECRET_KEY, 0); |
| 572 | export const decrypt = (msg) => crypt(msg, SECRET_KEY, 1); |
| 573 | export const encryptQuery = (query) => encrypt(Buffer.from(query)).toString("base64"); |
no test coverage detected