SSL

From Playing with linux...
Revision as of 08:33, 27 March 2015 by 2001:610:300:1::de (talk) (Created page with "'''Self Signed Certificate'''<br> Easiest way to create a self-signed certificate: <pre> openssl req -subj “/CN=domain.com” -new -newkey rsa:4096 -days 3650 -nodes -x509 ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Self Signed Certificate
Easiest way to create a self-signed certificate:

openssl req -subj “/CN=domain.com” -new -newkey rsa:4096 -days 3650 -nodes -x509 -sha512 -keyout private.key -out public.key