本文介绍了如何使用keytool将证书创建到PKCS12密钥库中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想使用keytool程序将证书创建为PKCS12密钥库格式.
I wanted to create a certificate into a PKCS12 keystore format with keytool program.
密钥库的扩展名为.pfx
.
我该如何实现?
推荐答案
如果密钥库是PKCS12类型(.pfx
),则必须使用-storetype PKCS12
(为提高可读性而添加换行符)指定它:
If the keystore is PKCS12 type (.pfx
) you have to specify it with -storetype PKCS12
(line breaks added for readability):
keytool -genkey -alias <desired certificate alias>
-keystore <path to keystore.pfx>
-storetype PKCS12
-keyalg RSA
-storepass <password>
-validity 730
-keysize 2048
这篇关于如何使用keytool将证书创建到PKCS12密钥库中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!