java/keytool
author Tomas Zeman <tzeman@volny.cz>
Sat, 15 Dec 2012 19:49:24 +0100
changeset 26 6f9a1760b066
parent 15 f383a7199631
permissions -rw-r--r--
coffeescript/frameworks: zappa, rem-js

http://community.jboss.org/wiki/GeneratingSelfSignedCertificateWithKeytool
Generating Self Signed Certificate with Keytool

Creating private/public key pair:
keytool -genkey -alias ... -keyalg RSA -validity 365 -keystore server.keystore -storetype JKS

Extracting the public key:
keytool -export -alias ... -keystore server.keystore -rfc -file public.cert

Creating the Truststore:
keytool -import -alias ... -file public.cert -storetype JKS -keystore server.truststore