summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authordequis <dx@dxzone.com.ar>2017-01-06 11:20:49 -0300
committerdequis <dx@dxzone.com.ar>2017-01-06 12:57:53 -0300
commit69e112fbd1b44a6f9f3380167c12bbe0f76693a1 (patch)
tree89a54e3a45915459a258eabe412caa715d8ee852 /NEWS
parentea7826b0ec097b9fdc29336ff7fe7074052773f5 (diff)
downloadirssi-69e112fbd1b44a6f9f3380167c12bbe0f76693a1.zip
NEWS: Avoid explicitly mentioning freenode in the pinning examples
They have proper certs, so using them as an example is wrong. Particularly worse since they started using letsencrypt recently so every server has a different cert and pubkey. We'll figure out how to link this from the release notes later.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS8
1 files changed, 4 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 81c6004c..9604277a 100644
--- a/NEWS
+++ b/NEWS
@@ -39,16 +39,16 @@ v1.0.0 2017-01-03 The Irssi team <staff@irssi.org>
values like this: Start by downloading the certificate from a given IRC
server:
- $ openssl s_client -connect chat.freenode.net:6697 < /dev/null 2>/dev/null | \
- openssl x509 > freenode.cert
+ $ openssl s_client -connect irc.example.net:6697 < /dev/null 2>/dev/null | \
+ openssl x509 > example.cert
Find the value for -tls_pinned_cert:
- $ openssl x509 -in freenode.cert -fingerprint -sha256 -noout
+ $ openssl x509 -in example.cert -fingerprint -sha256 -noout
Find the value for -tls_pinned_pubkey:
- $ openssl x509 -in freenode.cert -pubkey -noout | \
+ $ openssl x509 -in example.cert -pubkey -noout | \
openssl pkey -pubin -outform der | \
openssl dgst -sha256 -c | \
tr a-z A-Z