mirror of
https://gitee.com/mirrors/AllinSSL.git
synced 2026-03-08 07:41:10 +08:00
修改工作流主方法,修改证书申请
This commit is contained in:
@@ -343,8 +343,15 @@ func GetAcmeClient(email, algorithm, eabId, ca string, httpClient *http.Client,
|
||||
}
|
||||
}
|
||||
}
|
||||
var reg *registration.Resource
|
||||
var (
|
||||
reg *registration.Resource
|
||||
Kid, HmacEncoded string
|
||||
)
|
||||
if eabData != nil {
|
||||
Kid = eabData["Kid"].(string)
|
||||
HmacEncoded = eabData["HmacEncoded"].(string)
|
||||
}
|
||||
if Kid != "" && HmacEncoded != "" {
|
||||
Kid := eabData["Kid"].(string)
|
||||
HmacEncoded := eabData["HmacEncoded"].(string)
|
||||
reg, err = client.Registration.RegisterWithExternalAccountBinding(registration.RegisterEABOptions{
|
||||
|
||||
Reference in New Issue
Block a user