<?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 for LogikDevelopment</title>
	<atom:link href="http://www.logikdev.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.logikdev.com</link>
	<description>&#34;Il n&#039;y a pas de problème, il n&#039;y a que des solutions. L&#039;esprit de l&#039;homme invente ensuite le problème.&#34; André Gide</description>
	<lastBuildDate>Fri, 03 Feb 2012 16:53:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Encrypt with PHP &#8211; Decrypt with Java by HommeDeJava</title>
		<link>http://www.logikdev.com/2010/11/01/encrypt-with-php-decrypt-with-java/comment-page-1/#comment-8452</link>
		<dc:creator>HommeDeJava</dc:creator>
		<pubDate>Fri, 03 Feb 2012 16:53:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.logikdev.com/?p=887#comment-8452</guid>
		<description>Greetings,

I&#039;ve found your post very helpful!

Just want to add a small contribution for the sake of the community.

It could be handy to remember not to forget to encode the « encrypted » data with $encryptedDataUrlEncoded = urlencode($encryptedData); in order to add it as a parameter to an URL. 

Many thank&#039;s again</description>
		<content:encoded><![CDATA[<p>Greetings,</p>
<p>I&#8217;ve found your post very helpful!</p>
<p>Just want to add a small contribution for the sake of the community.</p>
<p>It could be handy to remember not to forget to encode the « encrypted » data with $encryptedDataUrlEncoded = urlencode($encryptedData); in order to add it as a parameter to an URL. </p>
<p>Many thank&#8217;s again</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Encrypt with PHP &#8211; Decrypt with Java by smoreau</title>
		<link>http://www.logikdev.com/2010/11/01/encrypt-with-php-decrypt-with-java/comment-page-1/#comment-8441</link>
		<dc:creator>smoreau</dc:creator>
		<pubDate>Fri, 03 Feb 2012 09:20:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.logikdev.com/?p=887#comment-8441</guid>
		<description>I am pretty sure we can, but I never try.
I can see plenty of PHP examples to encrypt using RSA and you can slightly modify my method to decrypt it in Java.
Please share the code with us once you did it! ;)</description>
		<content:encoded><![CDATA[<p>I am pretty sure we can, but I never try.<br />
I can see plenty of PHP examples to encrypt using RSA and you can slightly modify my method to decrypt it in Java.<br />
Please share the code with us once you did it! <img src='http://www.logikdev.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Encrypt with PHP &#8211; Decrypt with Java by Joe</title>
		<link>http://www.logikdev.com/2010/11/01/encrypt-with-php-decrypt-with-java/comment-page-1/#comment-8422</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Thu, 02 Feb 2012 16:41:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.logikdev.com/?p=887#comment-8422</guid>
		<description>Hi

Thanks a lot!
But i have a question:
Can we use the RSA algorithm?</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Thanks a lot!<br />
But i have a question:<br />
Can we use the RSA algorithm?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Encrypt with PHP &#8211; Decrypt with Java by baoengb</title>
		<link>http://www.logikdev.com/2010/11/01/encrypt-with-php-decrypt-with-java/comment-page-1/#comment-8240</link>
		<dc:creator>baoengb</dc:creator>
		<pubDate>Fri, 27 Jan 2012 01:07:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.logikdev.com/?p=887#comment-8240</guid>
		<description>The function is already tested, and it works, thanks smoreau.</description>
		<content:encoded><![CDATA[<p>The function is already tested, and it works, thanks smoreau.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Encrypt with PHP &#8211; Decrypt with Java by baoengb</title>
		<link>http://www.logikdev.com/2010/11/01/encrypt-with-php-decrypt-with-java/comment-page-1/#comment-8233</link>
		<dc:creator>baoengb</dc:creator>
		<pubDate>Thu, 26 Jan 2012 22:20:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.logikdev.com/?p=887#comment-8233</guid>
		<description>Hi smoreau,

Just guessing, I was wondering if I have the needed to decrypt via php, the result function would be:

function decrypt($message, $initialVector, $secretKey) {
  $decoded = base64_decode($message);
  return mcrypt_decrypt(
      MCRYPT_RIJNDAEL_128,
      md5($secretKey),
      $decoded,
      MCRYPT_MODE_CFB,
      $initialVector
	);
}

Agree?, not even tested yet.</description>
		<content:encoded><![CDATA[<p>Hi smoreau,</p>
<p>Just guessing, I was wondering if I have the needed to decrypt via php, the result function would be:</p>
<p>function decrypt($message, $initialVector, $secretKey) {<br />
  $decoded = base64_decode($message);<br />
  return mcrypt_decrypt(<br />
      MCRYPT_RIJNDAEL_128,<br />
      md5($secretKey),<br />
      $decoded,<br />
      MCRYPT_MODE_CFB,<br />
      $initialVector<br />
	);<br />
}</p>
<p>Agree?, not even tested yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Encrypt with PHP &#8211; Decrypt with Java by ibrahima</title>
		<link>http://www.logikdev.com/2010/11/01/encrypt-with-php-decrypt-with-java/comment-page-1/#comment-8171</link>
		<dc:creator>ibrahima</dc:creator>
		<pubDate>Mon, 23 Jan 2012 11:27:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.logikdev.com/?p=887#comment-8171</guid>
		<description>Thanks ! it resolves my problem</description>
		<content:encoded><![CDATA[<p>Thanks ! it resolves my problem</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on S3 command failed if the time is not synced by smoreau</title>
		<link>http://www.logikdev.com/2011/12/06/s3-command-failed-if-time-not-synced/comment-page-1/#comment-7973</link>
		<dc:creator>smoreau</dc:creator>
		<pubDate>Wed, 11 Jan 2012 10:37:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.logikdev.com/?p=1610#comment-7973</guid>
		<description>To be honest, I am not sure what is wrong. As I said in my post, this error message is not very helpful and doesn&#039;t tell you where the problem is!
I would suggest you first double-check your access key ID and your secret access key.
If they are correct, you should try to get some help from the AWS Developer Forums: https://forums.aws.amazon.com/index.jspa
Good luck!</description>
		<content:encoded><![CDATA[<p>To be honest, I am not sure what is wrong. As I said in my post, this error message is not very helpful and doesn&#8217;t tell you where the problem is!<br />
I would suggest you first double-check your access key ID and your secret access key.<br />
If they are correct, you should try to get some help from the AWS Developer Forums: <a href="https://forums.aws.amazon.com/index.jspa" rel="nofollow">https://forums.aws.amazon.com/index.jspa</a><br />
Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on S3 command failed if the time is not synced by Praneeth</title>
		<link>http://www.logikdev.com/2011/12/06/s3-command-failed-if-time-not-synced/comment-page-1/#comment-7962</link>
		<dc:creator>Praneeth</dc:creator>
		<pubDate>Tue, 10 Jan 2012 17:10:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.logikdev.com/?p=1610#comment-7962</guid>
		<description>I&#039;n getting exactly same error. 
even after adding this solution... I didn&#039;t work for me. 
any idea? 

Thanks!


10 Jan 17:08:34 ntpdate[11170]: adjust time server 109.74.206.120 offset -0.260315 sec
S3 command failed:
list_bucket max-keys 200 prefix praneeth delimiter /
With result 403 Forbidden
S3 ERROR: #
s3sync.rb:290:in `+&#039;: can&#039;t convert nil into Array (TypeError)
        from s3sync.rb:290:in `s3TreeRecurse&#039;
        from s3sync.rb:346:in `main&#039;
        from ./thread_generator.rb:79:in `call&#039;
        from ./thread_generator.rb:79:in `initialize&#039;
        from ./thread_generator.rb:76:in `new&#039;
        from ./thread_generator.rb:76:in `initialize&#039;
        from s3sync.rb:267:in `new&#039;
        from s3sync.rb:267:in `main&#039;
        from s3sync.rb:735</description>
		<content:encoded><![CDATA[<p>I&#8217;n getting exactly same error.<br />
even after adding this solution&#8230; I didn&#8217;t work for me.<br />
any idea? </p>
<p>Thanks!</p>
<p>10 Jan 17:08:34 ntpdate[11170]: adjust time server 109.74.206.120 offset -0.260315 sec<br />
S3 command failed:<br />
list_bucket max-keys 200 prefix praneeth delimiter /<br />
With result 403 Forbidden<br />
S3 ERROR: #<br />
s3sync.rb:290:in `+&#8217;: can&#8217;t convert nil into Array (TypeError)<br />
        from s3sync.rb:290:in `s3TreeRecurse&#8217;<br />
        from s3sync.rb:346:in `main&#8217;<br />
        from ./thread_generator.rb:79:in `call&#8217;<br />
        from ./thread_generator.rb:79:in `initialize&#8217;<br />
        from ./thread_generator.rb:76:in `new&#8217;<br />
        from ./thread_generator.rb:76:in `initialize&#8217;<br />
        from s3sync.rb:267:in `new&#8217;<br />
        from s3sync.rb:267:in `main&#8217;<br />
        from s3sync.rb:735</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Locale settings for your cron job by smoreau</title>
		<link>http://www.logikdev.com/2010/02/02/locale-settings-for-your-cron-job/comment-page-1/#comment-7869</link>
		<dc:creator>smoreau</dc:creator>
		<pubDate>Thu, 05 Jan 2012 11:57:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.logikdev.com/?p=291#comment-7869</guid>
		<description>Yes, this is perfectly fine to run the command &lt;code&gt;/etc/rc.d/init.d/crond restart&lt;/code&gt; instead.
If you want to use the command &lt;code&gt;service cron restart&lt;/code&gt;, you would need to install the service tool using the following command:
[shell light=&quot;true&quot;]
apt-get install sysvconfig
[/shell]</description>
		<content:encoded><![CDATA[<p>Yes, this is perfectly fine to run the command <code>/etc/rc.d/init.d/crond restart</code> instead.<br />
If you want to use the command <code>service cron restart</code>, you would need to install the service tool using the following command:</p>
<pre class="brush: bash; light: true; title: ; notranslate">
apt-get install sysvconfig
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Locale settings for your cron job by Omar Shibli</title>
		<link>http://www.logikdev.com/2010/02/02/locale-settings-for-your-cron-job/comment-page-1/#comment-7868</link>
		<dc:creator>Omar Shibli</dc:creator>
		<pubDate>Thu, 05 Jan 2012 11:47:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.logikdev.com/?p=291#comment-7868</guid>
		<description>Thanks a lot.
p.s. the above &quot;service cron restart&quot; command didn&#039;t work for me, so i tried this instead &quot;/etc/rc.d/init.d/crond restart&quot;.</description>
		<content:encoded><![CDATA[<p>Thanks a lot.<br />
p.s. the above &#8220;service cron restart&#8221; command didn&#8217;t work for me, so i tried this instead &#8220;/etc/rc.d/init.d/crond restart&#8221;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

