I am writing a procedure about key renewing for my application. This procedure will be executed by a sysadmin every year or so.
In my application, there is a symmetric key used to cipher some data before storing it in the database. This key is stored in a Java keystore.
When the application must store some data in the database in a ciphered way, the key alias to use is read from a configuration file, the key is read from the Java keystore with this key alias, the data is ciphered with the key and I store everything in the database: the key alias, the Initialization Vector and the ciphered data, all separated with semi-colons.
So the procedure to use another key is straightforward:
- generate a new symmetric key in the Java Keystore with another alias
- change the configuration file to use this new key alias
But I do not know any command-line tool that can create a symmetric key in a Java keystore. The java keytool
utility can only create key pairs.
Is there a command line tool to generate symmetric keys in a Java keystore or should I develop my own tool?
keytool is able to generate a secret key since Java 6 with the -genseckey command. Here is an excerpt of the Java 6 keytool documentation:
So the following command will generate a new AES 128 bits key
The
keytool
command has a typo bug that hides the help information about-genseckey
:The
-genkeypair
command appears twice. In fact the second-genkeypair
should be read-genseckey
. That's why I did not notice the command.I have encountered this typo bug with Java 1.6.0_26. I have checkd with the latest Java 6 available (1.6.0_31) and it has the same problem. I have also checked with the latest Java 7 and the documentation problem is fixed: