Reputation: 417
I would like to generate a certificate, public key, private key and all other things needed in order to connect Windows Azure via java code. I prefer using only keytool. How do I do that?
The java code requires a JKS file with private key in it.
Thx!
Upvotes: 0
Views: 420
Reputation: 20576
Keytool can help you up to certain extent however combination of Keytool and OpenSSL will give you everything you need to have your Java based application connect to Windows Azure (both management portal as well as SSL enabled Web Application.
Please follow the documentation as Migrating Keys from 'keytool' to 'OpenSSL'
Upvotes: 2