OpenSSL: Difference between revisions

From Anthony Pastor Wiki Notes - Verba volant, scripta manent
Jump to navigation Jump to search
(Created page with "== Global == * Generate a self-signer certificate without passphrase in one line: <syntaxhighlight lang="bash"> openssl req -nodes -new -x509 -keyout server.key -out server.c...")
 
No edit summary
Line 1: Line 1:
== Global ==
== Global ==
* Generate a self-signer certificate without passphrase in one line:
== Generate a self-signed certificate without passphrase in one line ==


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
openssl req -nodes -new -x509 -keyout server.key -out server.cert -days 3650
openssl req -nodes -new -x509 -keyout server.key -out server.cert -days 3650
</syntaxhighlight>
</syntaxhighlight>

Revision as of 12:03, 26 April 2016

Global

Generate a self-signed certificate without passphrase in one line

openssl req -nodes -new -x509 -keyout server.key -out server.cert -days 3650