Advertisement
danielcomcom

Create Self Signed SSL

Sep 22nd, 2021
1,090
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.30 KB | None | 0 0
  1. openssl req -newkey rsa:4096 \
  2.             -x509 \
  3.             -sha256 \
  4.             -days 3650 \
  5.             -nodes \
  6.             -out cert.crt \
  7.             -keyout privatekey.key \
  8.             -subj "/C=CA/ST=BC/L=Lytton/O=Security/OU=FlexSCADA/CN=FlexSCADA"
  9. cat privatekey.key
  10. cat cert.crt
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement