BOP的签名

This commit is contained in:
Yun
2024-11-04 12:10:36 +08:00
commit e26d03a35a
6 changed files with 205 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package bopx
import "errors"
var (
ErrorSignParamNotExist = errors.New("签名参数不存在")
ErrorSignMustBeString = errors.New("sign必须是字符串")
ErrorSignFail = errors.New("验签失败")
)