本文介绍了如何使用 keytool 在 PKCS12 密钥库中创建证书?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

I wanted to create a certificate into a PKCS12 keystore format with keytool program.

The keystore has extension .pfx.

How do I achieve this?

解决方案

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 密钥库中创建证书?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-17 13:26