我有威瑞信提供的三个文件 sample.cert、sample.CA、sample.key。我需要为 tomcat 创建密钥库。当我搜索时,我不能直接使用 .key 文件来创建密钥库。
我使用的命令如下:
pkcs12 -export -in sample.cert -inkey sample.key -CAfile sample.crt -out sample.p12
(我将 sample.CA 更改为 sample.crt ..)
我使用 openssl 创建 sample.p12 文件。然后我使用 keytool 将 sample.p12 导入到 sample.jsk。
keytool -importkeystore -srckeystore samp.p12 -destkeystore sample.jks -srcstoretype pkcs12
当我验证证书时,它显示中间证书链接问题。
任何想法?