Find answers to your technical questions and learn how to use our products
Search suggestions:
Install the tool that you want to use to view the keystore.
You can view the contents of the certificate in a keystore by using any common tool, such as keytool.
keytool -list -keystore <keystore> -storepass <keystorepassword> -storetype PKCS12 -v
Where:
keystore is the path to the keystore.
keystorepassword is the password of the keystore
PKCS12 is the format of the keystore. Use JKS for the JKS format keystores.
openssl x509 -in <certificate> -text noout
Where: certificate is the path to the PEM certificate.
Previous Topic
Next Topic