This is the script that has been floating around the list.. ###### # # Generate a certificate and key with no passphrase. # ######
OPENSSL=/usr/bin/openssl ## This generates the cert and key $OPENSSL req -new -x509 -newkey rsa:1024 -keyout privkey.pem -out key.pem ## This will remove the passphrase $OPENSSL rsa -in privkey.pem -out privkey.pem ## Put it all together cat privkey.pem >> key.pem ## Cleanup rm privkey.pem -Hans -----Original Message----- From: adrian [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 01, 2002 10:07 AM To: [EMAIL PROTECTED] Subject: [JDEV] Jabber security certificate (PEM File) Hi, where can i get a ".pem" file to be used with jabber server for SSL. Does the certificate for an web server is good for using with jabber? Adrian _______________________________________________ jdev mailing list [EMAIL PROTECTED] http://mailman.jabber.org/listinfo/jdev _______________________________________________ jdev mailing list [EMAIL PROTECTED] http://mailman.jabber.org/listinfo/jdev
