<?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: One time XOR pad with /dev/urandom</title>
	<atom:link href="http://anomit.com/2008/06/27/one-time-xor-pad-with-devurandom/feed/" rel="self" type="application/rss+xml" />
	<link>http://anomit.com/2008/06/27/one-time-xor-pad-with-devurandom/</link>
	<description></description>
	<lastBuildDate>Sun, 07 Aug 2011 08:30:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: anomit</title>
		<link>http://anomit.com/2008/06/27/one-time-xor-pad-with-devurandom/comment-page-1/#comment-1057</link>
		<dc:creator>anomit</dc:creator>
		<pubDate>Fri, 27 Jun 2008 20:17:47 +0000</pubDate>
		<guid isPermaLink="false">http://oni.ifastnet.com/2008/06/27/one-time-xor-pad-with-devurandom/#comment-1057</guid>
		<description>Wow. Elegant and nice. Sorry for the comment moderation thing. My captcha plugin started having some problems, so had to re enable the manual moderation. You can use the [ python ] and [ / python ] tags here to paste some code and also get proper highlighting. Also works for c/c++, php, ruby, java etc etc</description>
		<content:encoded><![CDATA[<p>Wow. Elegant and nice. Sorry for the comment moderation thing. My captcha plugin started having some problems, so had to re enable the manual moderation. You can use the [ python ] and [ / python ] tags here to paste some code and also get proper highlighting. Also works for c/c++, php, ruby, java etc etc</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anirudh</title>
		<link>http://anomit.com/2008/06/27/one-time-xor-pad-with-devurandom/comment-page-1/#comment-1056</link>
		<dc:creator>Anirudh</dc:creator>
		<pubDate>Fri, 27 Jun 2008 20:01:12 +0000</pubDate>
		<guid isPermaLink="false">http://oni.ifastnet.com/2008/06/27/one-time-xor-pad-with-devurandom/#comment-1056</guid>
		<description>[python]
def main(argv):
  pass

def sweeten(filename,keyfile):
  input = open(filename).read()
  key = open(keyfile).read()
  ASSERT_EQ(len(input),len(key))
  output=&quot;&quot;
  for i in range(len(input)):
    output+=chr(ord(input[i])^ord(key[i]))
  filename+=&#039;_out&#039;
  open(filename,&#039;w&#039;).write(output)

if __name__ == &#039;__main__&#039;:
  app.run()
[/python]</description>
		<content:encoded><![CDATA[<pre class="brush: python; title: ;">
def main(argv):
  pass

def sweeten(filename,keyfile):
  input = open(filename).read()
  key = open(keyfile).read()
  ASSERT_EQ(len(input),len(key))
  output=""
  for i in range(len(input)):
    output+=chr(ord(input[i])^ord(key[i]))
  filename+='_out'
  open(filename,'w').write(output)

if __name__ == '__main__':
  app.run()
</pre>
]]></content:encoded>
	</item>
</channel>
</rss>

