views:

94

answers:

4

Hi, I don't want to buy an SSL certificate yet, but still want to test SSL on my development server.

Is there a way to generate a temporary certificate, for testing purposes, albeit with warnings from browsers upon page load?

A: 

Yes download TinyCA or similar and create your own self signed certificate.

Paolo
+4  A: 

You can generate a self sign certificate and install it on your web server. If you are using apache, then you can use openssl to generate a self-signed certificate. If you care using Java, then you can use keytool to generate a self-signed certificate. If you are using .NET, then you can use makecert.

Chandra Patni
makecert http://msdn.microsoft.com/en-us/library/bfsktky3.aspx
sebastian
A: 

You can generate self-signed test certs using OpenSSL, .NET or Java tools.

Franci Penov