diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -91,7 +91,7 @@ Prerequisites: Example: Generate a key, create a csr, and have it signed. -------------- $ openssl genrsa -out priv.key 4096 -$ openssl req -new -sha256 -key priv.key -out cert.csr +$ openssl req -new -subj "/CN=example.com" -key priv.key -out cert.csr $ python sign_csr.py cert.csr > signed.crt -------------- |