<?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: Creating salted hash passwords in C#</title>
	<atom:link href="http://www.dijksterhuis.org/creating-salted-hash-values-in-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dijksterhuis.org/creating-salted-hash-values-in-c/</link>
	<description>Information, news about programming in C#</description>
	<lastBuildDate>Sat, 04 Jun 2011 10:24:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>By: JC</title>
		<link>http://www.dijksterhuis.org/creating-salted-hash-values-in-c/comment-page-1/#comment-12665</link>
		<dc:creator>JC</dc:creator>
		<pubDate>Thu, 02 Jun 2011 15:18:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.dijksterhuis.org/?p=336#comment-12665</guid>
		<description>Thanks very useful and well explained</description>
		<content:encoded><![CDATA[<p>Thanks very useful and well explained</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Soldier</title>
		<link>http://www.dijksterhuis.org/creating-salted-hash-values-in-c/comment-page-1/#comment-11429</link>
		<dc:creator>Soldier</dc:creator>
		<pubDate>Sat, 21 May 2011 10:46:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.dijksterhuis.org/?p=336#comment-11429</guid>
		<description>To Pepe Sasia :

&quot;Hashes are useful as a one-way method to store passwords. .....&quot;

&quot;It is not possible to reverse the password from a hash. .......&quot;

I think you got your answer above :)</description>
		<content:encoded><![CDATA[<p>To Pepe Sasia :</p>
<p>&#8220;Hashes are useful as a one-way method to store passwords. &#8230;..&#8221;</p>
<p>&#8220;It is not possible to reverse the password from a hash. &#8230;&#8230;.&#8221;</p>
<p>I think you got your answer above <img src='http://www.dijksterhuis.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CJ</title>
		<link>http://www.dijksterhuis.org/creating-salted-hash-values-in-c/comment-page-1/#comment-10981</link>
		<dc:creator>CJ</dc:creator>
		<pubDate>Mon, 16 May 2011 12:26:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.dijksterhuis.org/?p=336#comment-10981</guid>
		<description>Pepe,
The whole idea of using salted hashes to store passwords is to make it impossible to retrieve ;)</description>
		<content:encoded><![CDATA[<p>Pepe,<br />
The whole idea of using salted hashes to store passwords is to make it impossible to retrieve <img src='http://www.dijksterhuis.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Haddicus</title>
		<link>http://www.dijksterhuis.org/creating-salted-hash-values-in-c/comment-page-1/#comment-5983</link>
		<dc:creator>Haddicus</dc:creator>
		<pubDate>Thu, 03 Feb 2011 22:09:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.dijksterhuis.org/?p=336#comment-5983</guid>
		<description>In implementation, Pepe, you shouldn&#039;t be able to do this! Salted hashes only allow further authentication by comparing the hash, not by returning the right password. Basic hash theory.</description>
		<content:encoded><![CDATA[<p>In implementation, Pepe, you shouldn&#8217;t be able to do this! Salted hashes only allow further authentication by comparing the hash, not by returning the right password. Basic hash theory.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Mu</title>
		<link>http://www.dijksterhuis.org/creating-salted-hash-values-in-c/comment-page-1/#comment-5422</link>
		<dc:creator>Jeff Mu</dc:creator>
		<pubDate>Fri, 07 Jan 2011 23:50:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.dijksterhuis.org/?p=336#comment-5422</guid>
		<description>Pepe,
The whole point of using a hash and salt is so that you cannot recover the password.  You can only compare if the hashs match.  Reverisble encryption on passwords isn&#039;t much better than storing password in plain text, if you get the encryption key (for a symetrical encryption) then you have everyone&#039;s password.

It&#039;s not an issue, is a feature by design...

FYI,
jeff</description>
		<content:encoded><![CDATA[<p>Pepe,<br />
The whole point of using a hash and salt is so that you cannot recover the password.  You can only compare if the hashs match.  Reverisble encryption on passwords isn&#8217;t much better than storing password in plain text, if you get the encryption key (for a symetrical encryption) then you have everyone&#8217;s password.</p>
<p>It&#8217;s not an issue, is a feature by design&#8230;</p>
<p>FYI,<br />
jeff</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pepe Sasia</title>
		<link>http://www.dijksterhuis.org/creating-salted-hash-values-in-c/comment-page-1/#comment-5216</link>
		<dc:creator>Pepe Sasia</dc:creator>
		<pubDate>Tue, 21 Dec 2010 22:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dijksterhuis.org/?p=336#comment-5216</guid>
		<description>Hi!, i&#039;m using your great implementation of salted hash passwords, It&#039;s nice, but what I really need now is to retrieve a password from a given hash and salt. How can I do that? Have you got this issue resolved? Thank you very much.</description>
		<content:encoded><![CDATA[<p>Hi!, i&#8217;m using your great implementation of salted hash passwords, It&#8217;s nice, but what I really need now is to retrieve a password from a given hash and salt. How can I do that? Have you got this issue resolved? Thank you very much.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

