payment.UserConfig 中的 CertPath 和 KeyPath 可不可以新增直接设置证书内容的 配置字段,使用者直接读取证书内容
lukeyMing opened this issue · 2 comments
lukeyMing commented
payment.UserConfig 可不可以新增直接设置证书内容的 配置字段,使用者直接读取证书内容
`// 从文件中读取
certContent, _ := os.ReadFile("./cert.pem")
keyContent, _ := os.ReadFile("./key.pem")
// 从go-bindata 打包的文件中读取
// 从数据库中读取...
payment.UserConfig{
CertContent: certContent,
KeyContent: keyContent,
}`
Matrix-X commented
这个字段也兼容文件中的问本期内容
…On Tue, Sep 24, 2024 at 15:53 lukeyMing ***@***.***> wrote:
payment.UserConfig 可不可以新增直接设置证书内容的 配置字段,使用者直接读取证书内容
`// 从文件中读取
certContent, _ := os.ReadFile("./cert.pem")
keyContent, _ := os.ReadFile("./key.pem")
// 从数据库中读取...
payment.UserConfig{
CertContent: certContent,
KeyContent: keyContent,
}`
—
Reply to this email directly, view it on GitHub
<#555>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AACNRATDBB4Q7TVNKKAR5U3ZYEK6ZAVCNFSM6AAAAABOXVVDSCVHI2DSMVQWIX3LMV43ASLTON2WKOZSGU2DINRTG4YTENY>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
lukeyMing commented
CertContent: certContent,
KeyContent: keyContent,
感谢