<?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: JavaScript Encryption and Decryption 2.0</title>
	<atom:link href="http://www.vincentcheung.ca/blog/releases/javascript-encryption-and-decryption-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vincentcheung.ca/blog/releases/javascript-encryption-and-decryption-2/</link>
	<description>VincentCheung.ca Blog</description>
	<lastBuildDate>Sun, 25 Dec 2011 22:30:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: How to Barbeque</title>
		<link>http://www.vincentcheung.ca/blog/releases/javascript-encryption-and-decryption-2/comment-page-1/#comment-255855</link>
		<dc:creator>How to Barbeque</dc:creator>
		<pubDate>Fri, 16 Dec 2011 04:12:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.vincentcheung.ca/blog/?p=26#comment-255855</guid>
		<description>&lt;strong&gt;How to Barbeque...&lt;/strong&gt;

[...]VincentCheung.ca Blog &#187; Blog Archive &#187; JavaScript Encryption and Decryption 2.0[...]...</description>
		<content:encoded><![CDATA[<p><strong>How to Barbeque&#8230;</strong></p>
<p>[...]VincentCheung.ca Blog &raquo; Blog Archive &raquo; JavaScript Encryption and Decryption 2.0[...]&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Florin Catalin</title>
		<link>http://www.vincentcheung.ca/blog/releases/javascript-encryption-and-decryption-2/comment-page-1/#comment-246353</link>
		<dc:creator>Florin Catalin</dc:creator>
		<pubDate>Wed, 04 May 2011 14:23:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.vincentcheung.ca/blog/?p=26#comment-246353</guid>
		<description>Hi Vincent,
Excellent work with the encryption/decryption code! 
But I have a question: how can I use decryptText function to show hidden text not on page, but inside one alert box ? For example, I want to use tree variables, one for uniqueID, the second for encrypted text and  third to give me the decrypted text who can be used in alert box. It is possible ?
Thank you very much,
Florin Catalin</description>
		<content:encoded><![CDATA[<p>Hi Vincent,<br />
Excellent work with the encryption/decryption code!<br />
But I have a question: how can I use decryptText function to show hidden text not on page, but inside one alert box ? For example, I want to use tree variables, one for uniqueID, the second for encrypted text and  third to give me the decrypted text who can be used in alert box. It is possible ?<br />
Thank you very much,<br />
Florin Catalin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Skizz Jones</title>
		<link>http://www.vincentcheung.ca/blog/releases/javascript-encryption-and-decryption-2/comment-page-1/#comment-244222</link>
		<dc:creator>Skizz Jones</dc:creator>
		<pubDate>Tue, 29 Mar 2011 22:45:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.vincentcheung.ca/blog/?p=26#comment-244222</guid>
		<description>Apart from the annoying tooltip popup from the the title attribute it&#039;s a very nice script. Tried tinkering with the script thinking the alt tag could be used instead but have not quite cracked it.

Posibble workaround would be to swap the value of title tag into a cookie or client side storage, replacing it with null. Then swap it back in onmouseover somewhere.

crypto=document.getElementById(&quot;??????&quot;).title
	document.getElementById(&quot;??????&quot;).title=&quot;&quot;</description>
		<content:encoded><![CDATA[<p>Apart from the annoying tooltip popup from the the title attribute it&#8217;s a very nice script. Tried tinkering with the script thinking the alt tag could be used instead but have not quite cracked it.</p>
<p>Posibble workaround would be to swap the value of title tag into a cookie or client side storage, replacing it with null. Then swap it back in onmouseover somewhere.</p>
<p>crypto=document.getElementById(&#8220;??????&#8221;).title<br />
	document.getElementById(&#8220;??????&#8221;).title=&#8221;"</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paolo Cavellini</title>
		<link>http://www.vincentcheung.ca/blog/releases/javascript-encryption-and-decryption-2/comment-page-1/#comment-242575</link>
		<dc:creator>Paolo Cavellini</dc:creator>
		<pubDate>Tue, 08 Mar 2011 13:50:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.vincentcheung.ca/blog/?p=26#comment-242575</guid>
		<description>I have problems using your code in Chrome browser.
Your code:

if(!Array.indexOf){Array.prototype.indexOf=function(a,b){for(var i=(b&#124;&#124;0);i&lt;this.length;i++){if(this[i]==a){return i}}}}

In Chrome Array.indexOf is undefined and defining Array.prototype.indexOf doesn&#039;t seem a good idea.
I found in a discussion an alternative test working for Chrome and I changed your code in this way

if(!Array.indexOf &amp;&amp; ![].indexOf){Array.prototype.indexOf=function(a,b){for(var i=(b&#124;&#124;0);i&lt;this.length;i++){if(this[i]==a){return i}}}}

   Paolo</description>
		<content:encoded><![CDATA[<p>I have problems using your code in Chrome browser.<br />
Your code:</p>
<p>if(!Array.indexOf){Array.prototype.indexOf=function(a,b){for(var i=(b||0);i&lt;this.length;i++){if(this[i]==a){return i}}}}</p>
<p>In Chrome Array.indexOf is undefined and defining Array.prototype.indexOf doesn&#039;t seem a good idea.<br />
I found in a discussion an alternative test working for Chrome and I changed your code in this way</p>
<p>if(!Array.indexOf &amp;&amp; ![].indexOf){Array.prototype.indexOf=function(a,b){for(var i=(b||0);i&lt;this.length;i++){if(this[i]==a){return i}}}}</p>
<p>   Paolo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christoph</title>
		<link>http://www.vincentcheung.ca/blog/releases/javascript-encryption-and-decryption-2/comment-page-1/#comment-199738</link>
		<dc:creator>Christoph</dc:creator>
		<pubDate>Tue, 24 Aug 2010 21:40:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.vincentcheung.ca/blog/?p=26#comment-199738</guid>
		<description>Quote:
WKS Says:
March 27th, 2009 at 1:07 pm

Is there anyway to hide/disable the tooltip/popup message box that currently displays the encrypted text string from the DIV section without forcing the viewer to disable in their browser? I’ve been fiddling around with it but seem to be getting nowhere with it.

Did you find any solution for this? The code is incredible great and I could use it on our homepage of our independent company in Mexico, but the popup is a little annoying... 
take a look: http://cotorrafilms-inhouse.blogspot.com/

Thanks for your response and your hard work.</description>
		<content:encoded><![CDATA[<p>Quote:<br />
WKS Says:<br />
March 27th, 2009 at 1:07 pm</p>
<p>Is there anyway to hide/disable the tooltip/popup message box that currently displays the encrypted text string from the DIV section without forcing the viewer to disable in their browser? I’ve been fiddling around with it but seem to be getting nowhere with it.</p>
<p>Did you find any solution for this? The code is incredible great and I could use it on our homepage of our independent company in Mexico, but the popup is a little annoying&#8230;<br />
take a look: <a href="http://cotorrafilms-inhouse.blogspot.com/" rel="nofollow">http://cotorrafilms-inhouse.blogspot.com/</a></p>
<p>Thanks for your response and your hard work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vincent Cheung</title>
		<link>http://www.vincentcheung.ca/blog/releases/javascript-encryption-and-decryption-2/comment-page-1/#comment-186191</link>
		<dc:creator>Vincent Cheung</dc:creator>
		<pubDate>Sun, 18 Jul 2010 14:49:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.vincentcheung.ca/blog/?p=26#comment-186191</guid>
		<description>When you encode the text, don&#039;t just encode the plain text, encode the html code and then it should do what you want.</description>
		<content:encoded><![CDATA[<p>When you encode the text, don&#8217;t just encode the plain text, encode the html code and then it should do what you want.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BioGal</title>
		<link>http://www.vincentcheung.ca/blog/releases/javascript-encryption-and-decryption-2/comment-page-1/#comment-186166</link>
		<dc:creator>BioGal</dc:creator>
		<pubDate>Sun, 18 Jul 2010 13:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.vincentcheung.ca/blog/?p=26#comment-186166</guid>
		<description>This is COMPLETELY brilliant! I am SO impressed! I tried a while back to use this service but I was foxed by the HTML, but NOW I have been a bit braver and it works!

I&#039;d actually like to format the text so that it doesn&#039;t just run in a long line when revealed. I am trying to put my CV/resume online so it does need to look professional.

If formatting is too tricky, a pdf, or an image of a pdf (like the icon image you&#039;ve used) would work. But I don&#039;t know where to host the image. Shall I just import it to blogger as usual?

Thanks for all your hard work.</description>
		<content:encoded><![CDATA[<p>This is COMPLETELY brilliant! I am SO impressed! I tried a while back to use this service but I was foxed by the HTML, but NOW I have been a bit braver and it works!</p>
<p>I&#8217;d actually like to format the text so that it doesn&#8217;t just run in a long line when revealed. I am trying to put my CV/resume online so it does need to look professional.</p>
<p>If formatting is too tricky, a pdf, or an image of a pdf (like the icon image you&#8217;ve used) would work. But I don&#8217;t know where to host the image. Shall I just import it to blogger as usual?</p>
<p>Thanks for all your hard work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: michelle</title>
		<link>http://www.vincentcheung.ca/blog/releases/javascript-encryption-and-decryption-2/comment-page-1/#comment-130991</link>
		<dc:creator>michelle</dc:creator>
		<pubDate>Fri, 05 Mar 2010 08:44:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.vincentcheung.ca/blog/?p=26#comment-130991</guid>
		<description>hi Vincent:

Thanks for your work
everything was doing great before.
but these days, i tried using this code on my blog but the the popup box prompting for the password doesnt appear!
could you help me!
Thank you!</description>
		<content:encoded><![CDATA[<p>hi Vincent:</p>
<p>Thanks for your work<br />
everything was doing great before.<br />
but these days, i tried using this code on my blog but the the popup box prompting for the password doesnt appear!<br />
could you help me!<br />
Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Britney</title>
		<link>http://www.vincentcheung.ca/blog/releases/javascript-encryption-and-decryption-2/comment-page-1/#comment-3111</link>
		<dc:creator>Britney</dc:creator>
		<pubDate>Tue, 21 Jul 2009 17:49:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.vincentcheung.ca/blog/?p=26#comment-3111</guid>
		<description>Nevermind I figured it out.  This is great!  Thank you.</description>
		<content:encoded><![CDATA[<p>Nevermind I figured it out.  This is great!  Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Britney</title>
		<link>http://www.vincentcheung.ca/blog/releases/javascript-encryption-and-decryption-2/comment-page-1/#comment-3110</link>
		<dc:creator>Britney</dc:creator>
		<pubDate>Tue, 21 Jul 2009 17:35:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.vincentcheung.ca/blog/?p=26#comment-3110</guid>
		<description>The password box won&#039;t pop up when I try it either.  I&#039;m just a beginner with html code, but I think I&#039;m following the instructions carefully.  Does it not work with all blogger layouts?</description>
		<content:encoded><![CDATA[<p>The password box won&#8217;t pop up when I try it either.  I&#8217;m just a beginner with html code, but I think I&#8217;m following the instructions carefully.  Does it not work with all blogger layouts?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

