1 Star 0 Fork 1

可乐烛光烟/go-utils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
serve.go 776 Bytes
一键复制 编辑 原始数据 按行查看 历史
可乐烛光烟 提交于 2022-11-09 00:21 . Initial commit
/*
* @Author: i@rysa.cn
* @Date: 2022-05-14 16:48:14
* @LastEditTime: 2022-05-14 16:52:09
* @LastEditors: i@rysa.cn
* @Description:
* @FilePath: \go-utils\wechat\mp\serve\serve.go
*/
package serve
import (
"sort"
"strings"
"gitee.com/rysa/go-utils/strutil"
"gitee.com/rysa/go-utils/wechat/mp/mpconfig"
"gitee.com/rysa/go-utils/wechat/mp/params"
)
type serve struct {
*mpconfig.MpConfig
}
func NewServe(cfg *mpconfig.MpConfig) *serve {
return &serve{cfg}
}
func (mp *serve) CheckSignature(data params.Serve) string {
var strs = []string{data.Timestamp, data.Nonce, mp.Token}
sort.Slice(strs, func(i, j int) bool {
return strs[i] < strs[j]
})
str := strings.Join(strs, "")
if strutil.Sha1(str) == data.Signature {
return data.Echostr
}
return ""
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/rysa/go-utils.git
git@gitee.com:rysa/go-utils.git
rysa
go-utils
go-utils
v1.0.8

搜索帮助