本文介绍了如何使用keytool列出存储在PKCS12密钥库中的证书?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想列出存储在PKCS12密钥库中的证书。
密钥库的扩展名 .pfx
如果密钥库是PKCS12类型(
.pfx
),你必须用 -storetype PKCS12 : keytool -list -keystore {path to keystore.pfx} -storepass {password} -storetype PKCS12 -v
I wanted to list the certificates stored in a PKCS12 keystore.
The keystore has the extension .pfx
解决方案 If the keystore is PKCS12 type (.pfx
) you have to specify it with -storetype PKCS12
:
keytool -list -keystore {path to keystore.pfx} -storepass {password} -storetype PKCS12 -v
这篇关于如何使用keytool列出存储在PKCS12密钥库中的证书?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
06-26 02:11