Java Keytool is a key and certificate management tool that is used to manipulate Java Keystores, and is included with Java. A Java Keystore is a container for authorization certificates or public key certificates, and is often used by Java-based applications for encryption, authentication, and serving over HTTPS. Its entries are protected by a keystore password. A keystore entry is identified by an alias, and it consists of keys and certificates that form a trust chain.
This cheat sheet-style guide provides a quick reference to keytool
commands that are commonly useful when working with Java Keystores. This includes creating and modifying Java Keystores so they can be used with your Java applications.
How to Use This Guide:
\
symbol) for clarityThis section covers Java Keytool commands that are related to generating key pairs and certificates, and importing certificates.
Use this method if you want to use HTTP (HTTP over TLS) to secure your Java application. This will create a new key pair in a new or existing Java Keystore, which can be used to create a CSR, and obtain an SSL certificate from a Certificate Authority.
This command generates a 2048-bit RSA key pair, under the specified alias (domain
), in the specified keystore file (keystore.jks
):
keytool -genkeypair \
-alias domain \
-keyalg RSA \
-keystore keystore.jks
If the specified keystore does not already exist, it will be created after the requested information is supplied. This will prompt for the keystore password (new or existing), followed by a Distinguished Name prompt (for the private key), then the desired private key password.
Use this method if you want to generate an CSR that you can send to a CA to request the issuance of a CA-signed SSL certificate. It requires that the keystore and alias already exist; you can use the previous command to ensure this.
This command creates a CSR (domain.csr
) signed by the private key identified by the alias (domain
) in the (keystore.jks
) keystore:
keytool -certreq \
-alias domain \
-file domain.csr \
-keystore keystore.jks
After entering the keystore’s password, the CSR will be generated.
Use this method if you want to import a signed certificate, e.g. a certificate signed by a CA, into your keystore; it must match the private key that exists in the specified alias. You may also use this same command to import root or intermediate certificates that your CA may require to complete a chain of trust. Simply specify a unique alias, such as root
instead of domain
, and the certificate that you want to import.
This command imports the certificate (domain.crt
) into the keystore (keystore.jks
), under the specified alias (domain
). If you are importing a signed certificate, it must correspond to the private key in the specified alias:
keytool -importcert \
-trustcacerts -file domain.crt \
-alias domain \
-keystore keystore.jks
You will be prompted for the keystore password, then for a confirmation of the import action.
Note: You may also use the command to import a CA’s certificates into your Java truststore, which is typically located in $JAVA_HOME/jre/lib/security/cacerts
assuming $JAVA_HOME
is where your JRE or JDK is installed.
Use this command if you want to generate a self-signed certificate for your Java applications. This is actually the same command that is used to create a new key pair, but with the validity lifetime specified in days.
This command generates a 2048-bit RSA key pair, valid for 365
days, under the specified alias (domain
), in the specified keystore file (keystore.jks
):
keytool -genkey \
-alias domain \
-keyalg RSA \
-validity 365 \
-keystore keystore.jks
If the specified keystore does not already exist, it will be created after the requested information is supplied. This will prompt for the keystore password (new or existing), followed by a Distinguished Name prompt (for the private key), then the desired private key password.
This section covers listing the contents of a Java Keystore, such as viewing certificate information or exporting certificates.
This command lists the SHA fingerprints of all of the certificates in the keystore (keystore.jks
), under their respective aliases:
keytool -list \
-keystore keystore.jks
You will be prompted for the keystore’s password. You may also restrict the output to a specific alias by using the -alias domain
option, where “domain” is the alias name.
This command lists verbose information about the entries a keystore (keystore.jks
) contains, including certificate chain length, fingerprint of certificates in the chain, distinguished names, serial number, and creation/expiration date, under their respective aliases:
keytool -list -v \
-keystore keystore.jks
You will be prompted for the keystore’s password. You may also restrict the output to a specific alias by using the -alias domain
option, where “domain” is the alias name.
Note: You may also use this command to view which certificates are in your Java truststore, which is typically located in $JAVA_HOME/jre/lib/security/cacerts
assuming $JAVA_HOME
is where your JRE or JDK is installed.
This command prints verbose information about a certificate file (certificate.crt
), including its fingerprints, distinguished name of owner and issuer, and the time period of its validity:
keytool -printcert \
-file domain.crt
You will be prompted for the keystore password.
This command exports a binary DER-encoded certificate (domain.der
), that is associated with the alias (domain
), in the keystore (keystore.jks
):
keytool -exportcert
-alias domain
-file domain.der
-keystore keystore.jks
You will be prompted for the keystore password. If you want to convert the DER-encoded certificate to PEM-encoding, follow our OpenSSL cheat sheet.
This section covers the modification of Java Keystore entries, such as deleting or renaming aliases.
This command is used to change the password of a keystore (keystore.jks
):
keytool -storepasswd \
-keystore keystore.jks
You will be prompted for the current password, then the new password. You may also specify the new password in the command by using the -new newpass
option, where “newpass” is the password.
This command is used to delete an alias (domain
) in a keystore (keystore.jks
):
keytool -delete \
-alias domain \
-keystore keystore.jks
You will be prompted for the keystore password.
This command will rename the alias (domain
) to the destination alias (newdomain
) in the keystore (keystore.jks
):
keytool -changealias \
-alias domain \
-destalias newdomain \
-keystore keystore.jks
You will be prompted for the keystore password.
That should cover how most people use Java Keytool to manipulate their Java Keystores. It has many other uses that were not covered here, so feel free to ask or suggest other uses in the comments.
This tutorial is based on the version of keystore that ships with Java 1.7.0 update 65. For help installing Java on Ubuntu, follow this guide.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hello. I have a question here.
It matters the order in which we import the certificates? I mean, if I import the CA signed certificate and then the root/intermediate certificate, does that matter?
Greetings.
Great article here to demo the use of keytool. In real scenario, usually a self signed certificate is not enough, sometimes a certificate chain is needed. keytool can be used to generate certificate chain. here is a post which can demo how to generate certificate chain using keytool.
I have a serious doubt that is troubling me for a long time I created a keystore using : keytool -genkey -alias demo -keyalg RSA -keysize 2048 -keystore ks
and then using java code: //---------------------------------------------------------CODE BELOW---------------------------------------------- KeyStore ks = KeyStore.getInstance(KeyStore.getDefaultType());
java.io.FileInputStream fis = null; try { fis = new java.io.FileInputStream(“ks”); // or any path, but coudn’t get the path name for this “ks”
// keystore.
Direct link from PayPal guides! Anyway good article
Hi Mitchel
I have stored the JCEKS key in a file through JavaKeyStore. Is it Possible to Store the encrypted key in a DataBase using the Same JavaKeyStore. Please help he out. Here is a piece of code which i want to change it to storing in a mySQL db.
Cipher cipher = Cipher.getInstance(“AES128_CBC”, “FlexiCore”); KeyGenerator keyGen = KeyGenerator.getInstance(“AES”, “FlexiCore”); SecretKey secKey = keyGen.generateKey();