2024-11-04 12:10:36 +08:00
|
|
|
package bopx
|
|
|
|
|
|
|
|
|
|
import "errors"
|
|
|
|
|
|
|
|
|
|
var (
|
|
|
|
|
ErrorSignParamNotExist = errors.New("签名参数不存在")
|
|
|
|
|
ErrorSignMustBeString = errors.New("sign必须是字符串")
|
|
|
|
|
ErrorSignFail = errors.New("验签失败")
|
2025-10-12 18:41:05 +08:00
|
|
|
ErrorSignParamEmpty = errors.New("签名参数为空")
|
|
|
|
|
ErrorSignParamIsEmpty = errors.New("签名参数不能为空")
|
|
|
|
|
ErrorSignKeyIsEmpty = errors.New("签名key不能为空")
|
2024-11-04 12:10:36 +08:00
|
|
|
)
|