<?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: MD5/SHA1 Encryption in PHP vs. MySQL</title>
	<atom:link href="http://fwebde.com/php/encryption-php-vs-mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://fwebde.com/php/encryption-php-vs-mysql/</link>
	<description>Helping people to make fantastic websites, whether you are a designer, a developer, or someone just who loves websites.</description>
	<lastBuildDate>Fri, 15 Jul 2011 11:19:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Joseph</title>
		<link>http://fwebde.com/php/encryption-php-vs-mysql/comment-page-1/#comment-2084</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Fri, 15 Oct 2010 03:54:38 +0000</pubDate>
		<guid isPermaLink="false">http://fwebde.com/?p=527#comment-2084</guid>
		<description>Thanks for this! What Saviour means is that MySQL will perform its WHERE calculations for each record that it reads. In this case, it is having to perform the SHA1 encryption routine once for each record in the table.</description>
		<content:encoded><![CDATA[<p>Thanks for this! What Saviour means is that MySQL will perform its WHERE calculations for each record that it reads. In this case, it is having to perform the SHA1 encryption routine once for each record in the table.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SHA1 Speed Differences [PHP vs MySQL] – Part 2 &#171; Saviour&#39;s Blog</title>
		<link>http://fwebde.com/php/encryption-php-vs-mysql/comment-page-1/#comment-268</link>
		<dc:creator>SHA1 Speed Differences [PHP vs MySQL] – Part 2 &#171; Saviour&#39;s Blog</dc:creator>
		<pubDate>Fri, 25 Sep 2009 22:37:07 +0000</pubDate>
		<guid isPermaLink="false">http://fwebde.com/?p=527#comment-268</guid>
		<description>[...] SHA1 Speed Differences [PHP vs MySQL] – Part&#160;2  September 26, 2009 saviourc Leave a comment Go to comments    Back again for the second part of SHA1 Speed Differences. Who will win this battle between PHP vs MySQL? This post is a continuation of SHA1 Speed Differences [PHP vs MySQL] – Part 1 directly replying to the post MD5/SHA1 Encryption in PHP vs. MySQL. [...]</description>
		<content:encoded><![CDATA[<p>[...] SHA1 Speed Differences [PHP vs MySQL] – Part&nbsp;2  September 26, 2009 saviourc Leave a comment Go to comments    Back again for the second part of SHA1 Speed Differences. Who will win this battle between PHP vs MySQL? This post is a continuation of SHA1 Speed Differences [PHP vs MySQL] – Part 1 directly replying to the post MD5/SHA1 Encryption in PHP vs. MySQL. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl Agius</title>
		<link>http://fwebde.com/php/encryption-php-vs-mysql/comment-page-1/#comment-263</link>
		<dc:creator>Karl Agius</dc:creator>
		<pubDate>Thu, 24 Sep 2009 22:31:44 +0000</pubDate>
		<guid isPermaLink="false">http://fwebde.com/?p=527#comment-263</guid>
		<description>Saviour, indexing digest brings down the gap in the reads close enough to even out the field :) 

There is a very tiny advantage in the php digest version, but only a few fractions of a ms, and the reads are faster all around. 

Could you clarify what you mean by &quot;MySQL has to go through all records executing SHA1 for each&quot;?

Thanks for the tip and comment!</description>
		<content:encoded><![CDATA[<p>Saviour, indexing digest brings down the gap in the reads close enough to even out the field :) </p>
<p>There is a very tiny advantage in the php digest version, but only a few fractions of a ms, and the reads are faster all around. </p>
<p>Could you clarify what you mean by "MySQL has to go through all records executing SHA1 for each"?</p>
<p>Thanks for the tip and comment!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SHA1 Speed Differences [PHP vs MySQL] &#8211; Part 1 &#171; Saviour&#39;s Blog</title>
		<link>http://fwebde.com/php/encryption-php-vs-mysql/comment-page-1/#comment-262</link>
		<dc:creator>SHA1 Speed Differences [PHP vs MySQL] &#8211; Part 1 &#171; Saviour&#39;s Blog</dc:creator>
		<pubDate>Thu, 24 Sep 2009 19:50:25 +0000</pubDate>
		<guid isPermaLink="false">http://fwebde.com/?p=527#comment-262</guid>
		<description>[...] comment Go to comments    Reading my favorite blog, I&#8217;ve encountered a rather interesting article discussing the speed difference between PHP and MySQL. The results obtained were suspicious to [...]</description>
		<content:encoded><![CDATA[<p>[...] comment Go to comments    Reading my favorite blog, I&#8217;ve encountered a rather interesting article discussing the speed difference between PHP and MySQL. The results obtained were suspicious to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saviour Caruana</title>
		<link>http://fwebde.com/php/encryption-php-vs-mysql/comment-page-1/#comment-257</link>
		<dc:creator>Saviour Caruana</dc:creator>
		<pubDate>Thu, 24 Sep 2009 09:04:02 +0000</pubDate>
		<guid isPermaLink="false">http://fwebde.com/?p=527#comment-257</guid>
		<description>Karl, can you try this test with the password field &#039;digest&#039; indexed?

The difference being MySQL has to go through all records executing SHA1 for each.

With an indexed field, the result should probably be the same. My hunch.</description>
		<content:encoded><![CDATA[<p>Karl, can you try this test with the password field 'digest' indexed?</p>
<p>The difference being MySQL has to go through all records executing SHA1 for each.</p>
<p>With an indexed field, the result should probably be the same. My hunch.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl Agius</title>
		<link>http://fwebde.com/php/encryption-php-vs-mysql/comment-page-1/#comment-243</link>
		<dc:creator>Karl Agius</dc:creator>
		<pubDate>Mon, 21 Sep 2009 20:14:16 +0000</pubDate>
		<guid isPermaLink="false">http://fwebde.com/?p=527#comment-243</guid>
		<description>Thanks for your comment Borrellus, glad you found it interesting.</description>
		<content:encoded><![CDATA[<p>Thanks for your comment Borrellus, glad you found it interesting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Borellus</title>
		<link>http://fwebde.com/php/encryption-php-vs-mysql/comment-page-1/#comment-241</link>
		<dc:creator>Borellus</dc:creator>
		<pubDate>Mon, 21 Sep 2009 14:19:46 +0000</pubDate>
		<guid isPermaLink="false">http://fwebde.com/?p=527#comment-241</guid>
		<description>Brilliant post, it was very helpful. Thanks for sharing this =D</description>
		<content:encoded><![CDATA[<p>Brilliant post, it was very helpful. Thanks for sharing this =D</p>
]]></content:encoded>
	</item>
</channel>
</rss>

