JKS 证书生成器

上传证书文件
支持的格式:.crt, .pem, .cer, .p7b, .p12, .pfx

JKS 证书生成器

将SSL证书转换为Java密钥库(JKS)格式,用于Java应用和Tomcat服务器。


功能特点:
使用说明:
  1. 上传证书文件(推荐使用PKCS#12格式)
  2. 如果是PKCS#12格式,输入证书密码
  3. 设置JKS密码(用于保护生成的密钥库)
  4. 输入证书别名(用于在密钥库中标识证书)
  5. 点击生成按钮
提示:如果您使用Tomcat,请确保在server.xml中配置的密钥库密码与这里设置的JKS密码一致。
Keytool 命令行示例:
# 从PKCS#12创建JKS
keytool -importkeystore -srckeystore cert.p12 -srcstoretype PKCS12 -destkeystore cert.jks -deststoretype JKS

# 查看JKS内容
keytool -list -v -keystore cert.jks

# 从PEM创建PKCS#12(中间步骤)
openssl pkcs12 -export -in cert.pem -inkey key.pem -out cert.p12 -name "tomcat"

# 更改JKS密码
keytool -storepasswd -keystore cert.jks

# 更改证书条目密码
keytool -keypasswd -alias tomcat -keystore cert.jks