commit 29d448ed637968359394b1189f3f2be8076f1134 from: Florian Westphal date: Sat May 01 18:29:18 2010 UTC doc/SSL: remove line continuation marker some people got confused by the '\' line continuation marker, thus put everything in a single line, even if the line gets overly long. commit - bdec5ac1f37110a8456631e0155b5c9efeee35ee commit + 29d448ed637968359394b1189f3f2be8076f1134 blob - 7207f1bf6c21ce61ca488e94c8303df1557c67ed blob + 394894a2a103e8d6ccaa74258d40c35b3890e518 --- doc/SSL.txt +++ doc/SSL.txt @@ -49,8 +49,7 @@ Creating a self-signed certificate OpenSSL: Creating a self-signed certificate and key: - $ openssl req -newkey rsa:2048 -x509 -keyout server-key.pem \ - -out server-cert.pem -days 1461 + $ openssl req -newkey rsa:2048 -x509 -keyout server-key.pem -out server-cert.pem -days 1461 Create DH parameters (optional): $ openssl dhparam -2 -out dhparams.pem 2048 @@ -58,8 +57,7 @@ GnuTLS: Creating a self-signed certificate and key: $ certtool --generate-privkey --bits 2048 --outfile server-key.pem - $ certtool --generate-self-signed --load-privkey server-key.pem \ - --outfile server-cert.pem + $ certtool --generate-self-signed --load-privkey server-key.pem --outfile server-cert.pem Create DH parameters (optional): $ certtool --generate-dh-params --bits 2048 --outfile dhparams.pem