1 Star 0 Fork 0

eden-w2w/wechatpay-go

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
signer.go 623 Bytes
Copy Edit Raw Blame History
EmmetZC authored 2021-07-13 21:02 +08:00 . license: add copyright heading
// Copyright 2021 Tencent Inc. All rights reserved.
// Package auth 微信支付 API v3 Go SDK 安全验证相关接口
package auth
import "context"
// SignatureResult 数字签名结果
type SignatureResult struct {
MchID string // 商户号
CertificateSerialNo string // 签名对应的证书序列号
Signature string // 签名内容
}
// Signer 数字签名生成器
type Signer interface {
Sign(ctx context.Context, message string) (*SignatureResult, error) // 对信息进行签名
Algorithm() string // 返回使用的签名算法
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/eden-w2w/wechatpay-go.git
git@gitee.com:eden-w2w/wechatpay-go.git
eden-w2w
wechatpay-go
wechatpay-go
v0.2.12

Search