Skip to content

Commit

Permalink
Added guide on openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
Andres Hermosilla committed Aug 3, 2017
1 parent 4acd214 commit 0946d3a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions openssl.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# OpenSSL

```bash
# Verify a PEM
openssl x509 -inform PEM -in agent.crt.pem -noout -text

# Convert cert to PEM format
openssl x509 -in rabbitmq.crt -outform PEM -out rabbitmq.crt.pem

# Connect to server and show certs
openssl s_client -showcerts -connect pluralsight.com:443

# To debug openssl/certs on a server start openssl server ...
openssl s_server -key key.pem -cert cert.pem

# .. connect to server
openssl s_client -connect server.com:443 -ssl3
```

- https://blog.jorisvisscher.com/2015/07/22/create-a-simple-https-server-with-openssl-s_server/

0 comments on commit 0946d3a

Please sign in to comment.