如何将 .pem 与 .key 一起导入密钥库 (.jks)
How to import .pem together with .key to a keystore (.jks)
我有一个 .pem 证书和一个 .key 证书文件,我必须将它们一起导入到 .jks 密钥库,我该如何实现?
我找到了一个解决方案,其中包括将 .key 和 .pem 证书导出到 .p12 文件,然后将该 .p12 文件导入到 java 密钥库 (.jks)。
要将 .pem 和 .key 一起导出到 .p12,请使用此命令:
openssl pkcs12 -export -in <path to .pem cert> -inkey <path to .key cert> -out <desired name of the .p12 file with the extension> -name <cert alias>
然后,使用以下命令将 .p12 导入 java 密钥库:
keytool -importkeystore -v -srckeystore <path to .p12 file> -srcstoretype PKCS12 -destkeystore <path to .jks> -deststoretype JCEKS
我有一个 .pem 证书和一个 .key 证书文件,我必须将它们一起导入到 .jks 密钥库,我该如何实现?
我找到了一个解决方案,其中包括将 .key 和 .pem 证书导出到 .p12 文件,然后将该 .p12 文件导入到 java 密钥库 (.jks)。
要将 .pem 和 .key 一起导出到 .p12,请使用此命令:
openssl pkcs12 -export -in <path to .pem cert> -inkey <path to .key cert> -out <desired name of the .p12 file with the extension> -name <cert alias>
然后,使用以下命令将 .p12 导入 java 密钥库:
keytool -importkeystore -v -srckeystore <path to .p12 file> -srcstoretype PKCS12 -destkeystore <path to .jks> -deststoretype JCEKS