Skip to content

Commit

Permalink
Updated openssl page
Browse files Browse the repository at this point in the history
  • Loading branch information
Brett Wright committed Aug 30, 2017
1 parent 1eda23b commit 9506a0e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ script:
- python --version
- sudo pip install s3cmd
- s3cmd sync --delete-removed -P -M -r public/ s3://myblog.btwsolutions.net/
- s3cmd modify -m text/css s3://myblog.btwsolutions.net/css
notifications:
email:
on_failure: always
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Export Private key and Public Certificate
title: Openssl cheatsheet
author: Brett Wright
type: post
date: 2017-08-24
Expand All @@ -24,3 +24,13 @@ Remove the passphrase from the private key
```
openssl rsa -in key.pem -out server.key
```

Show public certificates
```
openssl s_client -showcerts -connect google.com.au:443
```

Testing for tls encryption protocol
```
openssl s_client -connect google.com.au:443 -tls1_2
```

0 comments on commit 9506a0e

Please sign in to comment.