Re: SSL Connections

From: Matthew Kirkwood <matthew(at)hairy(dot)beasts(dot)org>
To: Oliver Elphick <olly(at)lfix(dot)co(dot)uk>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: SSL Connections
Date: 2000-12-21 15:48:46
Message-ID: Pine.LNX.4.10.10012211544590.28089-100000@sphinx.mythic-beasts.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Wed, 20 Dec 2000, Oliver Elphick wrote:

> To create a quick self-signed certificate, use the CA.pl script
> included in OpenSSL:
>
> CA.pl -newcert

Or you can do it manually:

openssl req -new -text -out cert.req (you will have to enter a password)
mv privkey.pem cert.pem.pw
openssl rsa -in cert.pem.pw -out cert.pem (this removes the password)
openssl req -x509 -in cert.req -text -key cert.pem -out cert.cert

Matthew.

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2000-12-21 15:48:51 Re: CIDR output format
Previous Message Tom Lane 2000-12-21 15:34:58 Re: AW: AW: PostgreSQL pre-7.1 Linux/Alpha Status...