请求加密

const md5 = require(‘md5’)

1
2
3
4
5
6
7
8
function EncryptionParam(req){
const timestamp = new Date().getTime()
const saltToken = "9d1b0dda2797412d8a1cf8bcadab0464"
// md5加密
const tokenStr = JSON.stringify(req) + saltToken + timestamp
// 加密必须是 字符串
const token = md5(tokenStr)
}

请求加密
https://chenhongjun.top/2022/09/07/请求加密/
作者
Delightening
发布于
2022年9月7日
许可协议