On Sat, Nov 15, 2003 at 12:24:18PM +0100, Joel Aufrecht wrote: > passphrase-protected rsa key and a certificate. I then use > openssl rsa -in newreq.pem -out key.pem, which asks for the
The *req* file is a certificate request, you want to use OpenSSL to create a self-signed certificate from it, like so: openssl x509 -signkey key.pem -req -in newreq.pem -out newcert.pem Make a new key as well, don't use the compromised one you mailed to the list. :) //Peter
