What You Need You need the following set up in your Windows machine for this tutorial. You may not just read it but do it when you get time. Java Keytool keytool is a key and certificate management utility. It allows users to administer their own public/private key pairs and associated certificates for use in self-authentication (where the user authenticates himself/herself to other users/services) or data integrity and authentication services, using digital signatures. It also allows users to cache the public keys (in the form of certificates) of their communicating peers.This comes with all JRE distribution under the bin directory. Make sure Java bin directory is in your path. Type at the command prompt "keytool -help". If it works then good otherwise append the Java bin path in your PATH system variable. The follwing command shows my machines Java bin path! /Users/vpilaka export PATH=$PATH;/Users/vpialak\Java\jre1.6.0_22\bin Install OpenSSL You may be won...