2012/04/11

Move a java keystore certificate to openssl

A very good article on moving a self-signed certificate from a Java keystore to an openssl based keystore. Just the last step is missing:
openssl pkcs12 -name my_alias -export -in test.crt -inkey test.key -out keystore.p12
. .