<?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: Add Salt To Make Your Encryptions Better</title>
	<atom:link href="http://www.webmastersbydesign.com/2008/07/08/add-salt-to-make-your-encryptions-better/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webmastersbydesign.com/2008/07/08/add-salt-to-make-your-encryptions-better/</link>
	<description></description>
	<lastBuildDate>Fri, 12 Mar 2010 08:11:53 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Human_Bagel</title>
		<link>http://www.webmastersbydesign.com/2008/07/08/add-salt-to-make-your-encryptions-better/comment-page-1/#comment-587</link>
		<dc:creator>Human_Bagel</dc:creator>
		<pubDate>Thu, 03 Sep 2009 19:07:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.webmastersbydesign.com/?p=89#comment-587</guid>
		<description>I would personally use the hash() function in PHP, as the crypt() function creates a weak hash.
example:
  hash(&#039;whirlpool&#039;, $string . $salt);

or

  hash(&#039;ripemd160&#039;, $string . $salt);

Another point to consider is to not use printable characters for salts, I like to use unicode, such as in PHP:
  $salt = chr(2231) . chr(7761) . chr(1211) . &quot;\s \t\b&quot;;</description>
		<content:encoded><![CDATA[<p>I would personally use the hash() function in PHP, as the crypt() function creates a weak hash.<br />
example:<br />
  hash(&#8216;whirlpool&#8217;, $string . $salt);</p>
<p>or</p>
<p>  hash(&#8216;ripemd160&#8242;, $string . $salt);</p>
<p>Another point to consider is to not use printable characters for salts, I like to use unicode, such as in PHP:<br />
  $salt = chr(2231) . chr(7761) . chr(1211) . &#8220;\s \t\b&#8221;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://www.webmastersbydesign.com/2008/07/08/add-salt-to-make-your-encryptions-better/comment-page-1/#comment-569</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Tue, 28 Apr 2009 14:24:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.webmastersbydesign.com/?p=89#comment-569</guid>
		<description>Very helpful.  Simple enough to understand.  Thanks for showing some code examples.</description>
		<content:encoded><![CDATA[<p>Very helpful.  Simple enough to understand.  Thanks for showing some code examples.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
