<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: https, here	</title>
	<atom:link href="https://www.dragonflydigest.com/2014/09/26/https-here/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.dragonflydigest.com/2014/09/26/https-here/</link>
	<description>A running description of activity related to DragonFly BSD.</description>
	<lastBuildDate>Mon, 29 Sep 2014 22:51:16 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		By: sjh		</title>
		<link>https://www.dragonflydigest.com/2014/09/26/https-here/comment-page-1/#comment-285656</link>

		<dc:creator><![CDATA[sjh]]></dc:creator>
		<pubDate>Mon, 29 Sep 2014 22:51:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.dragonflydigest.com/?p=14830#comment-285656</guid>

					<description><![CDATA[Hmm.

There&#039;s some oddness going on with your SSL cert. OpenSSL on FreeBSD 10.0-RELEASE is getting upset. It&#039;s the only site I&#039;m seeing this issue with.

I noticed because my RSS reader stopped being able to poll your feed: In python:

[code]
&#062;&#062;&#062; import urllib2
&#062;&#062;&#062; rss = urllib2.urlopen(&#039;https://www.dragonflydigest.com/feed/&#039;)
Traceback (most recent call last):
  File &quot;&quot;, line 1, in 
  File &quot;/usr/local/lib/python2.7/urllib2.py&quot;, line 127, in urlopen
    return _opener.open(url, data, timeout)
  File &quot;/usr/local/lib/python2.7/urllib2.py&quot;, line 404, in open
    response = self._open(req, data)
  File &quot;/usr/local/lib/python2.7/urllib2.py&quot;, line 422, in _open
    &#039;_open&#039;, req)
  File &quot;/usr/local/lib/python2.7/urllib2.py&quot;, line 382, in _call_chain
    result = func(*args)
  File &quot;/usr/local/lib/python2.7/urllib2.py&quot;, line 1222, in https_open
    return self.do_open(httplib.HTTPSConnection, req)
  File &quot;/usr/local/lib/python2.7/urllib2.py&quot;, line 1184, in do_open
    raise URLError(err)
urllib2.URLError: 
[/code]

And the openssl client barfs, too:

[code]
$ openssl s_client -connect www.dragonflydigest.com:443
CONNECTED(00000003)
34379126440:error:140790E5:SSL routines:SSL23_WRITE:ssl handshake failure:/usr/src/secure/lib/libssl/../../../crypto/openssl/ssl/s23_lib.c:177:
---
no peer certificate available
---
No client certificate CA names sent
---
SSL handshake has read 0 bytes and written 309 bytes
---
New, (NONE), Cipher is (NONE)
Secure Renegotiation IS NOT supported
Compression: NONE
Expansion: NONE
---
[/code]

Hope this is something easy for you to fix.

sjh]]></description>
			<content:encoded><![CDATA[<p>Hmm.</p>
<p>There&#8217;s some oddness going on with your SSL cert. OpenSSL on FreeBSD 10.0-RELEASE is getting upset. It&#8217;s the only site I&#8217;m seeing this issue with.</p>
<p>I noticed because my RSS reader stopped being able to poll your feed: In python:</p>
<p>[code]<br />
&gt;&gt;&gt; import urllib2<br />
&gt;&gt;&gt; rss = urllib2.urlopen(&#8216;https://www.dragonflydigest.com/feed/&#8217;)<br />
Traceback (most recent call last):<br />
  File &#8220;&#8221;, line 1, in<br />
  File &#8220;/usr/local/lib/python2.7/urllib2.py&#8221;, line 127, in urlopen<br />
    return _opener.open(url, data, timeout)<br />
  File &#8220;/usr/local/lib/python2.7/urllib2.py&#8221;, line 404, in open<br />
    response = self._open(req, data)<br />
  File &#8220;/usr/local/lib/python2.7/urllib2.py&#8221;, line 422, in _open<br />
    &#8216;_open&#8217;, req)<br />
  File &#8220;/usr/local/lib/python2.7/urllib2.py&#8221;, line 382, in _call_chain<br />
    result = func(*args)<br />
  File &#8220;/usr/local/lib/python2.7/urllib2.py&#8221;, line 1222, in https_open<br />
    return self.do_open(httplib.HTTPSConnection, req)<br />
  File &#8220;/usr/local/lib/python2.7/urllib2.py&#8221;, line 1184, in do_open<br />
    raise URLError(err)<br />
urllib2.URLError:<br />
[/code]</p>
<p>And the openssl client barfs, too:</p>
<p>[code]<br />
$ openssl s_client -connect <a href="http://www.dragonflydigest.com:443" rel="ugc">http://www.dragonflydigest.com:443</a><br />
CONNECTED(00000003)<br />
34379126440:error:140790E5:SSL routines:SSL23_WRITE:ssl handshake failure:/usr/src/secure/lib/libssl/../../../crypto/openssl/ssl/s23_lib.c:177:<br />
&#8212;<br />
no peer certificate available<br />
&#8212;<br />
No client certificate CA names sent<br />
&#8212;<br />
SSL handshake has read 0 bytes and written 309 bytes<br />
&#8212;<br />
New, (NONE), Cipher is (NONE)<br />
Secure Renegotiation IS NOT supported<br />
Compression: NONE<br />
Expansion: NONE<br />
&#8212;<br />
[/code]</p>
<p>Hope this is something easy for you to fix.</p>
<p>sjh</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Justin Sherrill		</title>
		<link>https://www.dragonflydigest.com/2014/09/26/https-here/comment-page-1/#comment-285561</link>

		<dc:creator><![CDATA[Justin Sherrill]]></dc:creator>
		<pubDate>Sun, 28 Sep 2014 23:07:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.dragonflydigest.com/?p=14830#comment-285561</guid>

					<description><![CDATA[Ah, Zoey4ever - I did do 2048-bit - dragonflyBSDdigest is a redirect from the place where I registered it, and the SHAAAAAA place is probably noticing their certificate being 1024-bit.  Or something, but dragonflydigest.com is fine.

https://www.ssllabs.com/ssltest/analyze.html?d=dragonflydigest.com]]></description>
			<content:encoded><![CDATA[<p>Ah, Zoey4ever &#8211; I did do 2048-bit &#8211; dragonflyBSDdigest is a redirect from the place where I registered it, and the SHAAAAAA place is probably noticing their certificate being 1024-bit.  Or something, but dragonflydigest.com is fine.</p>
<p><a href="https://www.ssllabs.com/ssltest/analyze.html?d=dragonflydigest.com" rel="nofollow ugc">https://www.ssllabs.com/ssltest/analyze.html?d=dragonflydigest.com</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Justin Sherrill		</title>
		<link>https://www.dragonflydigest.com/2014/09/26/https-here/comment-page-1/#comment-285548</link>

		<dc:creator><![CDATA[Justin Sherrill]]></dc:creator>
		<pubDate>Sun, 28 Sep 2014 18:49:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.dragonflydigest.com/?p=14830#comment-285548</guid>

					<description><![CDATA[Igor - you don&#039;t need TLS to read it - but it&#039;s not a bad idea to have encryption available rather than not available.

Zoey4ever - I wasn&#039;t aware of that.  I&#039;ll redo the certificate dance again soon.  (ugh)

Edward - what do you mean?]]></description>
			<content:encoded><![CDATA[<p>Igor &#8211; you don&#8217;t need TLS to read it &#8211; but it&#8217;s not a bad idea to have encryption available rather than not available.</p>
<p>Zoey4ever &#8211; I wasn&#8217;t aware of that.  I&#8217;ll redo the certificate dance again soon.  (ugh)</p>
<p>Edward &#8211; what do you mean?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Igor		</title>
		<link>https://www.dragonflydigest.com/2014/09/26/https-here/comment-page-1/#comment-285454</link>

		<dc:creator><![CDATA[Igor]]></dc:creator>
		<pubDate>Sun, 28 Sep 2014 13:45:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.dragonflydigest.com/?p=14830#comment-285454</guid>

					<description><![CDATA[Sorry for dumb question, but why i need TLS for read this blog? Where is profit (if i&#039;m not criminal)?]]></description>
			<content:encoded><![CDATA[<p>Sorry for dumb question, but why i need TLS for read this blog? Where is profit (if i&#8217;m not criminal)?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Edward		</title>
		<link>https://www.dragonflydigest.com/2014/09/26/https-here/comment-page-1/#comment-285346</link>

		<dc:creator><![CDATA[Edward]]></dc:creator>
		<pubDate>Sun, 28 Sep 2014 06:24:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.dragonflydigest.com/?p=14830#comment-285346</guid>

					<description><![CDATA[Please make it &#039;default&#039; in the sense that update links and use a redirect. Thanks for providing TLS!]]></description>
			<content:encoded><![CDATA[<p>Please make it &#8216;default&#8217; in the sense that update links and use a redirect. Thanks for providing TLS!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Zoey4ever		</title>
		<link>https://www.dragonflydigest.com/2014/09/26/https-here/comment-page-1/#comment-285245</link>

		<dc:creator><![CDATA[Zoey4ever]]></dc:creator>
		<pubDate>Sun, 28 Sep 2014 00:44:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.dragonflydigest.com/?p=14830#comment-285245</guid>

					<description><![CDATA[Hm… https://shaaaaaaaaaaaaa.com/check/dragonflybsddigest.com]]></description>
			<content:encoded><![CDATA[<p>Hm… <a href="https://shaaaaaaaaaaaaa.com/check/dragonflybsddigest.com" rel="nofollow ugc">https://shaaaaaaaaaaaaa.com/check/dragonflybsddigest.com</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Anon		</title>
		<link>https://www.dragonflydigest.com/2014/09/26/https-here/comment-page-1/#comment-285108</link>

		<dc:creator><![CDATA[Anon]]></dc:creator>
		<pubDate>Sat, 27 Sep 2014 14:50:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.dragonflydigest.com/?p=14830#comment-285108</guid>

					<description><![CDATA[Looks fine now. Thanks for https, the more stuff encrypted on the web, the better :)]]></description>
			<content:encoded><![CDATA[<p>Looks fine now. Thanks for https, the more stuff encrypted on the web, the better :)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Anon		</title>
		<link>https://www.dragonflydigest.com/2014/09/26/https-here/comment-page-1/#comment-285106</link>

		<dc:creator><![CDATA[Anon]]></dc:creator>
		<pubDate>Sat, 27 Sep 2014 14:50:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.dragonflydigest.com/?p=14830#comment-285106</guid>

					<description><![CDATA[Testing if form submission still generates a warning...]]></description>
			<content:encoded><![CDATA[<p>Testing if form submission still generates a warning&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Justin Sherrill		</title>
		<link>https://www.dragonflydigest.com/2014/09/26/https-here/comment-page-1/#comment-285099</link>

		<dc:creator><![CDATA[Justin Sherrill]]></dc:creator>
		<pubDate>Sat, 27 Sep 2014 14:27:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.dragonflydigest.com/?p=14830#comment-285099</guid>

					<description><![CDATA[I turned https on by-default just now, now that I know I didn&#039;t scramble something.  Tell me if you get any non-https errors/warnings at this point.]]></description>
			<content:encoded><![CDATA[<p>I turned https on by-default just now, now that I know I didn&#8217;t scramble something.  Tell me if you get any non-https errors/warnings at this point.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Christian		</title>
		<link>https://www.dragonflydigest.com/2014/09/26/https-here/comment-page-1/#comment-284999</link>

		<dc:creator><![CDATA[Christian]]></dc:creator>
		<pubDate>Sat, 27 Sep 2014 11:17:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.dragonflydigest.com/?p=14830#comment-284999</guid>

					<description><![CDATA[No redirect by default? Then Strict Transport Security would also make sense. :)

Also it looks like the comment form doesn&#039;t use HTTPS yet. At least I get a warning about this.]]></description>
			<content:encoded><![CDATA[<p>No redirect by default? Then Strict Transport Security would also make sense. :)</p>
<p>Also it looks like the comment form doesn&#8217;t use HTTPS yet. At least I get a warning about this.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
