<?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: Predicting the rand() and using Cryptographic Random Numbers</title>
	<atom:link href="http://www.safercode.com/blog/2009/02/10/predicting-the-rand-and-using-cryptographic-random-numbers.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.safercode.com/blog/2009/02/10/predicting-the-rand-and-using-cryptographic-random-numbers.html</link>
	<description>Making Your Code Faster, Stronger, Safer…</description>
	<lastBuildDate>Thu, 18 Feb 2010 05:11:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Zombie No. 5</title>
		<link>http://www.safercode.com/blog/2009/02/10/predicting-the-rand-and-using-cryptographic-random-numbers.html#comment-688</link>
		<dc:creator>Zombie No. 5</dc:creator>
		<pubDate>Mon, 06 Apr 2009 19:32:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.safercode.com/blog/?p=31#comment-688</guid>
		<description>By the way, rand() and cryptography is similar to drinking and driving. They don&#039;t belong together, ever.</description>
		<content:encoded><![CDATA[<p>By the way, rand() and cryptography is similar to drinking and driving. They don&#8217;t belong together, ever.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zombie No. 5</title>
		<link>http://www.safercode.com/blog/2009/02/10/predicting-the-rand-and-using-cryptographic-random-numbers.html#comment-687</link>
		<dc:creator>Zombie No. 5</dc:creator>
		<pubDate>Mon, 06 Apr 2009 19:27:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.safercode.com/blog/?p=31#comment-687</guid>
		<description>Someone: No, this is just nice to have and can be useful but it is certainly no requirement. For testing you can use a PRNG with reproducable output. It isn&#039;t possible to test your code with any possible sequence anyway. It might not even be possible to test it for each possible input value, if your code has high complexity. Basically, you shouldn&#039;t write your code in a way that requires more than tests of corner-case to deduce that it&#039;s correct. Easier said than done, no doubt.</description>
		<content:encoded><![CDATA[<p>Someone: No, this is just nice to have and can be useful but it is certainly no requirement. For testing you can use a PRNG with reproducable output. It isn&#8217;t possible to test your code with any possible sequence anyway. It might not even be possible to test it for each possible input value, if your code has high complexity. Basically, you shouldn&#8217;t write your code in a way that requires more than tests of corner-case to deduce that it&#8217;s correct. Easier said than done, no doubt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Someone</title>
		<link>http://www.safercode.com/blog/2009/02/10/predicting-the-rand-and-using-cryptographic-random-numbers.html#comment-443</link>
		<dc:creator>Someone</dc:creator>
		<pubDate>Sun, 22 Mar 2009 20:10:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.safercode.com/blog/?p=31#comment-443</guid>
		<description>You are missing a property that a random number generator must have: the ability to force the library reproduce random number sequences (either from the same or an earlier run).

This is indispensable during development, as it allows one to verify that a rarely occurring issue really is fixed.</description>
		<content:encoded><![CDATA[<p>You are missing a property that a random number generator must have: the ability to force the library reproduce random number sequences (either from the same or an earlier run).</p>
<p>This is indispensable during development, as it allows one to verify that a rarely occurring issue really is fixed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blacklight</title>
		<link>http://www.safercode.com/blog/2009/02/10/predicting-the-rand-and-using-cryptographic-random-numbers.html#comment-222</link>
		<dc:creator>blacklight</dc:creator>
		<pubDate>Sat, 28 Feb 2009 06:19:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.safercode.com/blog/?p=31#comment-222</guid>
		<description>http://www.zedwood.com/article/121/cpp-md5-function has a good md5 function you might be interested in.</description>
		<content:encoded><![CDATA[<p><a href="http://www.zedwood.com/article/121/cpp-md5-function" rel="nofollow">http://www.zedwood.com/article/121/cpp-md5-function</a> has a good md5 function you might be interested in.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amit Goel</title>
		<link>http://www.safercode.com/blog/2009/02/10/predicting-the-rand-and-using-cryptographic-random-numbers.html#comment-194</link>
		<dc:creator>Amit Goel</dc:creator>
		<pubDate>Tue, 24 Feb 2009 12:40:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.safercode.com/blog/?p=31#comment-194</guid>
		<description>@gedece,
 Thanks a lot.

@Paul_one,
I&#039;ll definitely add it as soon as I get some time.</description>
		<content:encoded><![CDATA[<p>@gedece,<br />
 Thanks a lot.</p>
<p>@Paul_one,<br />
I&#8217;ll definitely add it as soon as I get some time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul_one</title>
		<link>http://www.safercode.com/blog/2009/02/10/predicting-the-rand-and-using-cryptographic-random-numbers.html#comment-161</link>
		<dc:creator>Paul_one</dc:creator>
		<pubDate>Mon, 16 Feb 2009 16:01:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.safercode.com/blog/?p=31#comment-161</guid>
		<description>Could you possibly include Linux/BSD/MacOS in this thing too?
Nice post though.
Very enjoyable to read.</description>
		<content:encoded><![CDATA[<p>Could you possibly include Linux/BSD/MacOS in this thing too?<br />
Nice post though.<br />
Very enjoyable to read.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gedece</title>
		<link>http://www.safercode.com/blog/2009/02/10/predicting-the-rand-and-using-cryptographic-random-numbers.html#comment-139</link>
		<dc:creator>gedece</dc:creator>
		<pubDate>Tue, 10 Feb 2009 17:14:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.safercode.com/blog/?p=31#comment-139</guid>
		<description>Really interesting, thanks for pointing it out,as I&#039;ve never programmed security and so I&#039;m willing to learn some pointers.</description>
		<content:encoded><![CDATA[<p>Really interesting, thanks for pointing it out,as I&#8217;ve never programmed security and so I&#8217;m willing to learn some pointers.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
