Computer Tips - Windows: How do I make a self-signed certificate with no password?

Date: 2009jun16 OS: Windows Q. Windows: How do I make a self-signed certificate with no password? A. If you have an Apache and openssl package installed, do this on the command line:
cd "C:\Program Files\Apache Group\Apache2\bin" openssl genrsa 1024 > server.key openssl req -config ..\conf\openssl.cnf -new -x509 -nodes -sha1 -days 3650 -key server.key > server.crt move server.key ..\conf\ssl.key move server.crt ..\conf\ssl.crt