(data)
| 589 | |
| 590 | // 瑙e瘑 |
| 591 | function decrypt(data) { |
| 592 | const encryptor = new JSEncrypt() |
| 593 | encryptor.setPrivateKey(PRIVATE_KEY) |
| 594 | return encryptor.decryptLong(data) |
| 595 | } |
| 596 | let sign = getSign(body) |
| 597 | let timestamp = new Date().getTime() |
| 598 | return entryData({ |
no outgoing calls
no test coverage detected