mirror of
https://github.com/certimate-go/certimate.git
synced 2026-04-26 05:05:56 +03:00
[GH-ISSUE #1075] [Bug] 腾讯云EdgeOne多证书模式无法更新证书 #726
Labels
No labels
announcement
backlog
bug
declined
documentation
duplicate
enhancement
good first issue
good first issue
help wanted
invalid
pull-request
question
stale
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/certimate#726
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Netrvin on GitHub (Dec 1, 2025).
Original GitHub issue: https://github.com/certimate-go/certimate/issues/1075
Release Version / 软件版本
v0.4.7
Description / 缺陷描述
github.com/certimate-go/certimate@1fd0e50f43/pkg/core/deployer/providers/tencentcloud-eo/tencentcloud_eo.go (L197)github.com/certimate-go/certimate@1fd0e50f43/pkg/core/deployer/providers/tencentcloud-eo/tencentcloud_eo.go (L92)github.com/certimate-go/certimate@1fd0e50f43/pkg/utils/crypto/key/key.go (L31-L46)该功能通过
GetPrivateKeyAlgorithm获取私钥算法,但入参却使用了string,因此GetPrivateKeyAlgorithm将永远返回x509.UnknownPublicKeyAlgorithm,导致无法正确识别证书算法,从而向EdgeOne接口提交相同算法的两份证书(新申请证书、原有证书),造成部署失败Steps to reproduce / 复现步骤
Logs / 日志
Miscellaneous / 其他
No response
Contribution / 贡献代码
@Netrvin commented on GitHub (Dec 1, 2025):
该功能在 https://github.com/certimate-go/certimate/pull/1049 引入 @fudiwei