Import a PKCS #12 File
You can import a PKCS #12 key and certificate file that was generated elsewhere into the Oracle Communications Core Session Manager (OCCSM) by way of the ACLI.
Make sure that your PKCS#12 file was generated either with the
-descert
flag or the -keypbe
and -certpbe
options. If
rsa.key
is a private key and cert.crt
is an X.509
certificate, either of the following commands generates a PKCS#12
file.# generate using -descert
openssl pkcs12 -export -in cert.crt -inkey rsa.key -out my_pkcs12.pfx -name "Test Cert" -descert
# generate using -keypbe and -certpbe options
openssl pkcs12 -export -in cert.crt -inkey rsa.key -out my_pkcs12.pfx -name "Test Cert" -keypbe PBE-SHA1-3DES -certpbe PBE-SHA1-3DES