问题描述
我使用以下API获取以前在EJBCA中生成的证书:
I am using the following API to fetch a certificate previously generated in EJBCA:
,java.lang.String)
https://www.ejbca.org/older_releases/ejbca_4_0/htdocs/ws/org/ejbca/core/protocol/ws/client/gen/EjbcaWS.html#getCertificate(java.lang.String, java.lang.String)
私人+公钥是在代码中生成的,因此我没有在任何地方持久化。
The Private+public key was generated in the code, and hence I haven't persisted it anywhere.
在设置用户状态editUser)我已经使用
https://www.ejbca.org/older_releases/ejbca_4_0/htdocs/ws/org/ejbca/core/protocol/ws/client/gen/UserDataVOWS.html#TOKEN_TYPE_P12
While setting the user status ( "editUser" ) I've usedhttps://www.ejbca.org/older_releases/ejbca_4_0/htdocs/ws/org/ejbca/core/protocol/ws/client/gen/UserDataVOWS.html#TOKEN_TYPE_P12
- 如何获取p12证书?我获得.crt文件(只有公钥)。
- EJBCA是否会将私钥永久保留在某处?
- EJBCA密钥库是否有帮助?
推荐答案
您应该使用pkcs12Req WS方法来生成服务器生成的p12文件。
You should use the pkcs12Req WS method to generate a server generated p12 file.
这篇关于从EJBCA获取预生成的p12证书的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!