]> granicus.if.org Git - curl/commitdiff
CURLOPT_PINNEDPUBLICKEY.3: replace test.com with example.com
authorViktor Szakats <vszakats@users.noreply.github.com>
Sun, 20 Sep 2015 14:08:15 +0000 (16:08 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Sun, 20 Sep 2015 16:41:23 +0000 (18:41 +0200)
closes #443

docs/libcurl/opts/CURLOPT_PINNEDPUBLICKEY.3

index 9f8224af71ed8be18ab94fa6a513e26086d13036..f4dc4750e2ac2e6a0e12a622335217ae2d434a77 100644 (file)
@@ -71,16 +71,16 @@ server's certificate.
 # - If you don't have sed, then just copy the certificate into a file:
 #   Lines from -----BEGIN CERTIFICATE----- to -----END CERTIFICATE-----.
 #
-openssl s_client -servername www.test.com -connect www.test.com:443 < /dev/null | sed -n "/-----BEGIN/,/-----END/p" > www.test.com.pem
+openssl s_client -servername www.example.com -connect www.example.com:443 < /dev/null | sed -n "/-----BEGIN/,/-----END/p" > www.example.com.pem
 
 # extract public key in pem format from certificate
-openssl x509 -in www.test.com.pem -pubkey -noout > www.test.com.pubkey.pem
+openssl x509 -in www.example.com.pem -pubkey -noout > www.example.com.pubkey.pem
 
 # convert public key from pem to der
-openssl asn1parse -noout -inform pem -in www.test.com.pubkey.pem -out www.test.com.pubkey.der
+openssl asn1parse -noout -inform pem -in www.example.com.pubkey.pem -out www.example.com.pubkey.der
 
 # sha256 hash and base64 encode der to string for use
-openssl dgst -sha256 -binary www.test.com.pubkey.der | openssl base64
+openssl dgst -sha256 -binary www.example.com.pubkey.der | openssl base64
 .fi
 The public key in PEM format contains a header, base64 data and a
 footer: