<?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: Version 1.0.1 security update released!</title>
	<atom:link href="http://www.jcryption.org/2009/08/15/version-1-0-1-security-update-released/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jcryption.org/2009/08/15/version-1-0-1-security-update-released/</link>
	<description>javascript data encryption</description>
	<lastBuildDate>Wed, 19 Jun 2013 23:27:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Vish</title>
		<link>http://www.jcryption.org/2009/08/15/version-1-0-1-security-update-released/comment-page-1/#comment-137371</link>
		<dc:creator>Vish</dc:creator>
		<pubDate>Fri, 26 Oct 2012 17:46:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.jcryption.org/?p=153#comment-137371</guid>
		<description><![CDATA[I am hoping for an ASP.net implementation of this. Any updates ?]]></description>
		<content:encoded><![CDATA[<p>I am hoping for an ASP.net implementation of this. Any updates ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Griesser</title>
		<link>http://www.jcryption.org/2009/08/15/version-1-0-1-security-update-released/comment-page-1/#comment-3072</link>
		<dc:creator>Daniel Griesser</dc:creator>
		<pubDate>Thu, 14 Jan 2010 18:10:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.jcryption.org/?p=153#comment-3072</guid>
		<description><![CDATA[Thanks for your reply ... 
I am currently working on a 2.0 version of jCryption. 
I have to admit that I am not a master in encryption/decryption maths and algorithms so thanks for your information. 
I will definetly take a closer look at them and how they interact with eachother.
The new version should will support bidirectional communication and &quot;normal string&quot; encryption/decryption.]]></description>
		<content:encoded><![CDATA[<p>Thanks for your reply &#8230;<br />
I am currently working on a 2.0 version of jCryption.<br />
I have to admit that I am not a master in encryption/decryption maths and algorithms so thanks for your information.<br />
I will definetly take a closer look at them and how they interact with eachother.<br />
The new version should will support bidirectional communication and &#8220;normal string&#8221; encryption/decryption.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: keepsweek</title>
		<link>http://www.jcryption.org/2009/08/15/version-1-0-1-security-update-released/comment-page-1/#comment-3071</link>
		<dc:creator>keepsweek</dc:creator>
		<pubDate>Thu, 14 Jan 2010 04:55:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.jcryption.org/?p=153#comment-3071</guid>
		<description><![CDATA[jCryption needs a 2.0 release.  Badly.  I mean, seriously, as is, jCryption is susceptible to replay attacks and offline brute force attacks.  To protect against offline replay attacks, passwords should either have a randomized fixed length salt prepended to them or OAEP padding ought to be used.  To protect against replay attacks, nonces ought to be used.

Also, key generation is quite slow as is decryption.  Real world RSA implementations employee the Chinese Remainder Theorem to break decryption up into pieces, each of which can be performed faster than treating the whole thing as one giant piece.

My personal recommendation is this: For the javascript portion of the code, use this:

http://www-cs-students.stanford.edu/~tjw/jsbn/

Although the examples are slower than the ohdave.com implementation, it&#039;s faster.  The ohdave.com examples don&#039;t employee randomized padding whereas the above implementation does.

For the backend PHP implementation use this:

http://phpseclib.sourceforge.net/

It uses the Chinese Remainder Theorem and the gmp extension if it&#039;s available.  If neither gmp or bcmath are available it uses it&#039;s own internal implementation.]]></description>
		<content:encoded><![CDATA[<p>jCryption needs a 2.0 release.  Badly.  I mean, seriously, as is, jCryption is susceptible to replay attacks and offline brute force attacks.  To protect against offline replay attacks, passwords should either have a randomized fixed length salt prepended to them or OAEP padding ought to be used.  To protect against replay attacks, nonces ought to be used.</p>
<p>Also, key generation is quite slow as is decryption.  Real world RSA implementations employee the Chinese Remainder Theorem to break decryption up into pieces, each of which can be performed faster than treating the whole thing as one giant piece.</p>
<p>My personal recommendation is this: For the javascript portion of the code, use this:</p>
<p><a href="http://www-cs-students.stanford.edu/~tjw/jsbn/" rel="nofollow">http://www-cs-students.stanford.edu/~tjw/jsbn/</a></p>
<p>Although the examples are slower than the ohdave.com implementation, it&#8217;s faster.  The ohdave.com examples don&#8217;t employee randomized padding whereas the above implementation does.</p>
<p>For the backend PHP implementation use this:</p>
<p><a href="http://phpseclib.sourceforge.net/" rel="nofollow">http://phpseclib.sourceforge.net/</a></p>
<p>It uses the Chinese Remainder Theorem and the gmp extension if it&#8217;s available.  If neither gmp or bcmath are available it uses it&#8217;s own internal implementation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Radomir</title>
		<link>http://www.jcryption.org/2009/08/15/version-1-0-1-security-update-released/comment-page-1/#comment-122</link>
		<dc:creator>Radomir</dc:creator>
		<pubDate>Wed, 02 Sep 2009 11:12:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.jcryption.org/?p=153#comment-122</guid>
		<description><![CDATA[Hi Daniel,

have you any implemention with asp.net?

Thanks]]></description>
		<content:encoded><![CDATA[<p>Hi Daniel,</p>
<p>have you any implemention with asp.net?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->