<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Linux: Generating Strong Passwords Using random/urandom</title>
	<atom:link href="http://blog.colovirt.com/2009/01/07/linux-generating-strong-passwords-using-randomurandom/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.colovirt.com/2009/01/07/linux-generating-strong-passwords-using-randomurandom/</link>
	<description>and linux between</description>
	<lastBuildDate>Sun, 07 Mar 2010 08:18:39 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Passwords &#171; Home@Computer:~$</title>
		<link>http://blog.colovirt.com/2009/01/07/linux-generating-strong-passwords-using-randomurandom/#comment-338</link>
		<dc:creator>Passwords &#171; Home@Computer:~$</dc:creator>
		<pubDate>Sat, 09 Jan 2010 07:52:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.colovirt.com/?p=362#comment-338</guid>
		<description>[...] for an even more secure password. For more information on this (and other aspects) go and read this post. It should answer some, if not most, of your [...]</description>
		<content:encoded><![CDATA[<p>[...] for an even more secure password. For more information on this (and other aspects) go and read this post. It should answer some, if not most, of your [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kcollo</title>
		<link>http://blog.colovirt.com/2009/01/07/linux-generating-strong-passwords-using-randomurandom/#comment-199</link>
		<dc:creator>kcollo</dc:creator>
		<pubDate>Mon, 17 Aug 2009 13:48:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.colovirt.com/?p=362#comment-199</guid>
		<description>Nice.  Just as fast and do not get the miscellaneous output that you would with the &quot;dd&quot; command.  This is another good alternative simple command line argument to generate password(s).  Thanks!</description>
		<content:encoded><![CDATA[<p>Nice.  Just as fast and do not get the miscellaneous output that you would with the &#8220;dd&#8221; command.  This is another good alternative simple command line argument to generate password(s).  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: xciton</title>
		<link>http://blog.colovirt.com/2009/01/07/linux-generating-strong-passwords-using-randomurandom/#comment-197</link>
		<dc:creator>xciton</dc:creator>
		<pubDate>Sun, 16 Aug 2009 00:22:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.colovirt.com/?p=362#comment-197</guid>
		<description>The output of md5sum is base 16, where as using tr with [:alnum:] gives you base 62.  Given the same length, the tr method provides a much higher resolution password.

I use:

cat /dev/urandom &#124; tr -dc [:alnum:] &#124; head -c48; echo</description>
		<content:encoded><![CDATA[<p>The output of md5sum is base 16, where as using tr with [:alnum:] gives you base 62.  Given the same length, the tr method provides a much higher resolution password.</p>
<p>I use:</p>
<p>cat /dev/urandom | tr -dc [:alnum:] | head -c48; echo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kcollo</title>
		<link>http://blog.colovirt.com/2009/01/07/linux-generating-strong-passwords-using-randomurandom/#comment-181</link>
		<dc:creator>kcollo</dc:creator>
		<pubDate>Fri, 05 Jun 2009 12:47:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.colovirt.com/?p=362#comment-181</guid>
		<description>I agree, using tr makes the command hard to remember.  I actually just copy and paste it when needed, or copy a list of generated ones to a pad for future use.  I definitely do like you option of using md5sum.  I was worried about  passing non-ascii characters over, but looks like it works fine!  When not mass generating accounts, I think I will actually use the md5sum method.  Thanks!</description>
		<content:encoded><![CDATA[<p>I agree, using tr makes the command hard to remember.  I actually just copy and paste it when needed, or copy a list of generated ones to a pad for future use.  I definitely do like you option of using md5sum.  I was worried about  passing non-ascii characters over, but looks like it works fine!  When not mass generating accounts, I think I will actually use the md5sum method.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Draco</title>
		<link>http://blog.colovirt.com/2009/01/07/linux-generating-strong-passwords-using-randomurandom/#comment-180</link>
		<dc:creator>Draco</dc:creator>
		<pubDate>Fri, 05 Jun 2009 02:48:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.colovirt.com/?p=362#comment-180</guid>
		<description>You know what I like to do...

dd if=/dev/urandom count=1 &#124; md5sum 


Then I copy the resulting hash and use that as the password.
Sometimes I also use 

dd if=/dev/random count=1 &#124; openssl base64


None of these passwords are human rememberable, so there&#039;s usually no real reason not to make it 32 characters instead, and use copy+paste to enter passwords and store them in the password vault.

Of course one can grab a few characters out of them and use that slice.

The long tr commands are a bit much to type on a system.</description>
		<content:encoded><![CDATA[<p>You know what I like to do&#8230;</p>
<p>dd if=/dev/urandom count=1 | md5sum </p>
<p>Then I copy the resulting hash and use that as the password.<br />
Sometimes I also use </p>
<p>dd if=/dev/random count=1 | openssl base64</p>
<p>None of these passwords are human rememberable, so there&#8217;s usually no real reason not to make it 32 characters instead, and use copy+paste to enter passwords and store them in the password vault.</p>
<p>Of course one can grab a few characters out of them and use that slice.</p>
<p>The long tr commands are a bit much to type on a system.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
