小能豆

如何使用现有私钥生成 jks 密钥库

jks

Spectrum Conductor 的 SSL 配置需要 jks 密钥库。如何使用现有私钥生成 jks 密钥库?


阅读 236

收藏
2024-02-15

共1个答案

小能豆

使用私钥生成 p12 密钥库,然后将其转换为 jks 密钥库:

  1. openssl pkcs12 -export -in user.pem -inkey user.key -certfile user.pem -out testkeystore.p12
  2. keytool -importkeystore -srckeystore testkeystore.p12 -srcstoretype pkcs12 -destkeystore wso2carbon.jks -deststoretype JKS
2024-02-15