Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
想要使用 CMP(证书管理协议)和使用 Golang 语言的 HTTP 通信向 EJBCA 服务器发送/生成证书生成请求?
我在这里找到了与 JAVA 类似的实现 --> CMP 证书请求
关于如何用 Golang 做同样的事情有什么建议吗?
通常在 C/C++、Java、C# 等其他语言中,您使用实现更高级别 API 的库来执行 CMP 消息创建、解析、验证等,例如 Bouncy Castle 或 OpenSSL。在 Go 中,我不知道是否存在一个好的模块库?当然,您始终可以手动滚动 ASN.1,因为基础仍然是 PKCS#10 证书请求,但出于各种目的需要进行大量包装。