<?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: How To Make a Simple Password — Unhackable for 580 million years!</title>
	<atom:link href="http://www.blogussion.com/blogging-tips/580-million-years-hacker/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blogussion.com/blogging-tips/580-million-years-hacker/</link>
	<description>Blogging Discussion, Tips &#38; Tricks</description>
	<lastBuildDate>Fri, 03 Sep 2010 06:35:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
	<item>
		<title>By: Adam Jonsson</title>
		<link>http://www.blogussion.com/blogging-tips/580-million-years-hacker/comment-page-1/#comment-13635</link>
		<dc:creator>Adam Jonsson</dc:creator>
		<pubDate>Fri, 22 Jan 2010 09:42:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogussion.com/blog/?p=1790#comment-13635</guid>
		<description>My standard password is 10-12 characters so thanks for assuring me that I&#039;m pretty safe. Of course that I can&#039;t remember all of them - they are stored in KeePass database :)</description>
		<content:encoded><![CDATA[<p>My standard password is 10–12 characters so thanks for assuring me that I’m pretty safe. Of course that I can’t remember all of them — they are stored in KeePass database <img src='http://www.blogussion.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fairmutex</title>
		<link>http://www.blogussion.com/blogging-tips/580-million-years-hacker/comment-page-1/#comment-12948</link>
		<dc:creator>Fairmutex</dc:creator>
		<pubDate>Thu, 07 Jan 2010 05:10:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogussion.com/blog/?p=1790#comment-12948</guid>
		<description>Good explanation you have all my respect ;)

But all of this assumes that the passwords are not stored hashed

Because hashing the password will loose some information so that you can never recover the password back. If the password is hashed then it takes less time to guess than described here because multiple passwords map to the same hash. Those who know a bit of math will understand this.

Example with binary (this is not what happens in reality just to give the gist to normal users) 
Assume a password is 3 characters long
Lets say we remove the last character from password so that the password is not recoverable (i know this only need two attempts but am trying to make it simple to you)

 set of passwords    hash
000                        00 
001                        00  
010                        01
100                        10 
101                        10  
110                        11 
111                        11

by removing the last character we made more passwords valid to match the hash in this case its divided by 2.  (its the nature of the example that made this decrease the amount of time to guess linear it might be exponentially reduced in reality)

So don&#039;t be so sure of the accuracy of the calculation above.</description>
		<content:encoded><![CDATA[<p>Good explanation you have all my respect <img src='http://www.blogussion.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>But all of this assumes that the passwords are not stored hashed</p>
<p>Because hashing the password will loose some information so that you can never recover the password back. If the password is hashed then it takes less time to guess than described here because multiple passwords map to the same hash. Those who know a bit of math will understand this.</p>
<p>Example with binary (this is not what happens in reality just to give the gist to normal users)<br />
Assume a password is 3 characters long<br />
Lets say we remove the last character from password so that the password is not recoverable (i know this only need two attempts but am trying to make it simple to you)</p>
<p> set of passwords    hash<br />
000                        00<br />
001                        00<br />
010                        01<br />
100                        10<br />
101                        10<br />
110                        11<br />
111                        11</p>
<p>by removing the last character we made more passwords valid to match the hash in this case its divided by 2.  (its the nature of the example that made this decrease the amount of time to guess linear it might be exponentially reduced in reality)</p>
<p>So don’t be so sure of the accuracy of the calculation above.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: foo bar</title>
		<link>http://www.blogussion.com/blogging-tips/580-million-years-hacker/comment-page-1/#comment-11622</link>
		<dc:creator>foo bar</dc:creator>
		<pubDate>Sun, 06 Dec 2009 14:40:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogussion.com/blog/?p=1790#comment-11622</guid>
		<description>Correction to my bullet #1:

1) How did you come up w/ 36 combinations. 32 characters in the English alphabet ....</description>
		<content:encoded><![CDATA[<p>Correction to my bullet #1:</p>
<p>1) How did you come up w/ 36 combinations. 32 characters in the English alphabet .…</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: foo bar</title>
		<link>http://www.blogussion.com/blogging-tips/580-million-years-hacker/comment-page-1/#comment-11621</link>
		<dc:creator>foo bar</dc:creator>
		<pubDate>Sun, 06 Dec 2009 14:39:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogussion.com/blog/?p=1790#comment-11621</guid>
		<description>I didn&#039;t read all of the comments, but I have a few questions about this. 

1) How did you come up w/ 32 characters? 32 letters in the English alphabet, assuming that&#039;s the basis here. numbers 0-9 would make that 41.... I don&#039;t get it.

2) You say  that if number of characters = 1, that would make for 32 combinations. So you&#039;re assuming case-insensitive. You should clarify.

3) Let&#039;s not even go into special characters (they are chars after all).

4) Finally, if someone&#039;s password is the letter &quot;a&quot;, then they deserve to be hacked.</description>
		<content:encoded><![CDATA[<p>I didn’t read all of the comments, but I have a few questions about this. </p>
<p>1) How did you come up w/ 32 characters? 32 letters in the English alphabet, assuming that’s the basis here. numbers 0–9 would make that 41.… I don’t get it.</p>
<p>2) You say  that if number of characters = 1, that would make for 32 combinations. So you’re assuming case-insensitive. You should clarify.</p>
<p>3) Let’s not even go into special characters (they are chars after all).</p>
<p>4) Finally, if someone’s password is the letter “a”, then they deserve to be hacked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oes tsetnoc</title>
		<link>http://www.blogussion.com/blogging-tips/580-million-years-hacker/comment-page-1/#comment-8316</link>
		<dc:creator>oes tsetnoc</dc:creator>
		<pubDate>Thu, 24 Sep 2009 06:38:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogussion.com/blog/?p=1790#comment-8316</guid>
		<description>great article tutorial, i am thinking to add more special characters of all my password to prevent hackers.
.-= oes tsetnoc´s last blog ..&lt;a href=&quot;http://www.oes-tsetnoc.org/increase-link-popularity-by-blog-commenting/&quot;&gt;Increase Link Popularity By Blog Commenting&lt;/a&gt; =-.</description>
		<content:encoded><![CDATA[<p>great article tutorial, i am thinking to add more special characters of all my password to prevent hackers.<br />
<span class="cluv"> oes tsetnoc´s last blog ..<a href="http://www.oes-tsetnoc.org/increase-link-popularity-by-blog-commenting/">Increase Link Popularity By Blog Commenting</a> </span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Garry@moistdesigns</title>
		<link>http://www.blogussion.com/blogging-tips/580-million-years-hacker/comment-page-1/#comment-8242</link>
		<dc:creator>Garry@moistdesigns</dc:creator>
		<pubDate>Mon, 21 Sep 2009 07:52:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogussion.com/blog/?p=1790#comment-8242</guid>
		<description>Awesome for anyone to think on this.Simple logic with rationality makes this acceptable.Even if we consider technology updates and other factors and shorten the time by half still it is long enough time to think of another password,isn&#039;t it ;) I liked it.</description>
		<content:encoded><![CDATA[<p>Awesome for anyone to think on this.Simple logic with rationality makes this acceptable.Even if we consider technology updates and other factors and shorten the time by half still it is long enough time to think of another password,isn’t it <img src='http://www.blogussion.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  I liked it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Volksphone</title>
		<link>http://www.blogussion.com/blogging-tips/580-million-years-hacker/comment-page-1/#comment-8189</link>
		<dc:creator>Volksphone</dc:creator>
		<pubDate>Sat, 19 Sep 2009 13:25:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogussion.com/blog/?p=1790#comment-8189</guid>
		<description>Ok I think 59 years for computer hacker is really secure. I didn´t not live this time from this day. 

regards
Volksphone
.-= Volksphone´s last blog ..&lt;a href=&quot;http://t3n.de/socialnews/Webentwicklung/Usability-Schnelltest-fuer-die-eigene-Firmenwebsite/&quot;&gt;Usability-Schnelltest für die eigene Firmenwebsite&lt;/a&gt; =-.</description>
		<content:encoded><![CDATA[<p>Ok I think 59 years for computer hacker is really secure. I didn´t not live this time from this day. </p>
<p>regards<br />
Volksphone<br />
<span class="cluv"> Volksphone´s last blog ..<a href="http://t3n.de/socialnews/Webentwicklung/Usability-Schnelltest-fuer-die-eigene-Firmenwebsite/">Usability-Schnelltest für die eigene Firmenwebsite</a> </span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hakeem - technology and gadgets</title>
		<link>http://www.blogussion.com/blogging-tips/580-million-years-hacker/comment-page-1/#comment-7824</link>
		<dc:creator>Hakeem - technology and gadgets</dc:creator>
		<pubDate>Mon, 07 Sep 2009 03:45:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogussion.com/blog/?p=1790#comment-7824</guid>
		<description>What along time just to be able to discover a password.
.-= Hakeem - technology and gadgets´s last blog ..&lt;a href=&quot;http://www.tech2crave.com/tech-weekly-podcast-studying-at-the-singularity-university&quot;&gt;Tech Weekly podcast: Studying at the Singularity University&lt;/a&gt; =-.</description>
		<content:encoded><![CDATA[<p>What along time just to be able to discover a password.<br />
<span class="cluv"> Hakeem — technology and gadgets´s last blog ..<a href="http://www.tech2crave.com/tech-weekly-podcast-studying-at-the-singularity-university">Tech Weekly podcast: Studying at the Singularity University</a> </span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: University Heights real estate</title>
		<link>http://www.blogussion.com/blogging-tips/580-million-years-hacker/comment-page-1/#comment-7793</link>
		<dc:creator>University Heights real estate</dc:creator>
		<pubDate>Sun, 06 Sep 2009 00:40:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogussion.com/blog/?p=1790#comment-7793</guid>
		<description>Thanks a ton Janith, this was a perfect table explaining how many characters are suitable, with having 10 character long password, I&#039;ve been in favor of keeping two passwords. Like logging in for email or forums, you need two passwords to sign in. You can keep one password 10-character long and the other one shorter. But as you said it would take a computer hacker 59 years, my idea might not be worth practicing it lol.</description>
		<content:encoded><![CDATA[<p>Thanks a ton Janith, this was a perfect table explaining how many characters are suitable, with having 10 character long password, I’ve been in favor of keeping two passwords. Like logging in for email or forums, you need two passwords to sign in. You can keep one password 10-character long and the other one shorter. But as you said it would take a computer hacker 59 years, my idea might not be worth practicing it lol.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vic of BusinessAccent</title>
		<link>http://www.blogussion.com/blogging-tips/580-million-years-hacker/comment-page-1/#comment-7401</link>
		<dc:creator>Vic of BusinessAccent</dc:creator>
		<pubDate>Mon, 17 Aug 2009 17:02:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogussion.com/blog/?p=1790#comment-7401</guid>
		<description>Wow...great great article. My first time to read such post. Thanks. What a nice illustration of numeric figures. By the way, how about special characters like %$*, do they have the same difficulty with ordinary letters and numbers?</description>
		<content:encoded><![CDATA[<p>Wow…great great article. My first time to read such post. Thanks. What a nice illustration of numeric figures. By the way, how about special characters like %$*, do they have the same difficulty with ordinary letters and numbers?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
