mirror of
https://github.com/certimate-go/certimate.git
synced 2026-04-26 05:05:56 +03:00
[GH-ISSUE #1025] [Feature] 支持 R3 的证书,以支持android 5.1的旧IOT设备 #702
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#702
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 @aohanhongzhi on GitHub (Nov 3, 2025).
Original GitHub issue: https://github.com/certimate-go/certimate/issues/1025
功能描述 / Description
最近拿到一个android 5.1的IOT面板设备,最新的R13证书无法将校验了。需要使用 R3证书。
请求动机 / Motivation
以支持旧IOT设备,维护。
目前设备访问后端接口报错:
其他 / Miscellaneous
Android 5.1 不信任 ISRG Root X1,这是 Let's Encrypt 从 2021 年开始默认使用的根证书。
Certimate 是一个基于 Web UI 的 ACME 客户端(通常运行在 Docker 中),它支持 Let’s Encrypt 等 ACME 服务。
要使用 Certimate 申请由 R3 中间证书签发、兼容 Android 5.1 的证书,关键是 指定 preferred-chain: "DST Root CA X3"。
贡献 / Contribution
@imlonghao commented on GitHub (Nov 4, 2025):
DST Root CA X3签发的ISRG Root X1已于 2024-09-30 过期https://crt.sh/?id=3958242236
@aohanhongzhi commented on GitHub (Nov 4, 2025):
但是Android 5.1的 IOT设备还在跑呢,有没有办法解决这个问题?
@aohanhongzhi commented on GitHub (Nov 4, 2025):
我自己手动使用
生成了证书,就可以正常被Android 5.1 系统识别了。
certimate 生成的,就无法被识别。
重点应该是看如何支持:
@imlonghao commented on GitHub (Nov 4, 2025):
Let's Encrypt 的话无解,他们最低支持的是 Android >= 7.1.1
https://letsencrypt.org/zh-cn/docs/certificate-compatibility/
并非如此,第一张图的证书颁发机构是 ZeroSSL,你可以通过 certimate 更换一个证书颁发机构实现
@aohanhongzhi commented on GitHub (Nov 4, 2025):
我换了 ZeroSSL就报错了。
@imlonghao commented on GitHub (Nov 4, 2025):
从截图来看你的证书颁发机构授权为空
@aohanhongzhi commented on GitHub (Nov 6, 2025):
确实是的,搞定了。但是等我验证这个颁发的证书是否能被Android 5.1认可看看。