<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Encrypting password issue in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Encrypting-password-issue/m-p/2357104#M122482</link>
    <description>rot13 is not encryption and should not be used for passwords.&lt;BR /&gt;If you really want to encrypt your passwords, you should be looking at something like pgp or gpg.&lt;BR /&gt;rot13 was maybe good enough 2000 years ago.</description>
    <pubDate>Sun, 27 Apr 2014 07:03:57 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-04-27T07:03:57Z</dc:date>
    <item>
      <title>Encrypting password issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Encrypting-password-issue/m-p/2357098#M122476</link>
      <description>Hi
&lt;BR /&gt;I followed the procedure described by Shong on this link :-
&lt;BR /&gt;
&lt;A href="https://help.talend.com/pages/viewpage.action?pageId=28671224&amp;amp;focusedCommentId=31065832#comment-31065832" target="_blank" rel="nofollow noopener noreferrer"&gt;https://help.talend.com/pages/viewpage.action?pageId=28671224&amp;amp;focusedCommentId=31065832#comment-31065832&lt;/A&gt;
&lt;BR /&gt;Now i have doubt regarding default value of context variable,is it the actual password or something else?
&lt;BR /&gt;please light on the issue if anyone have gone through it.
&lt;BR /&gt;Apart from this when i am trying to connect to oracle 10g database using procedure above described i am getting following error:
&lt;BR /&gt;Exception in component tOracleInput_1
&lt;BR /&gt;java.sql.SQLException: ORA-01017: invalid username/password; logon denied
&lt;BR /&gt;When i manually enter password,no issue at all.I easily get connected to database and can fire any query i want.</description>
      <pubDate>Thu, 24 Apr 2014 15:46:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Encrypting-password-issue/m-p/2357098#M122476</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-04-24T15:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypting password issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Encrypting-password-issue/m-p/2357099#M122477</link>
      <description>Hi,&lt;BR /&gt;The default value of your context variable must be the encrypted value.&lt;BR /&gt;Use this site to encrypt your password&lt;BR /&gt;&lt;A href="http://rot13.com" rel="nofollow noopener noreferrer"&gt;http://rot13.com&lt;/A&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Thu, 24 Apr 2014 17:12:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Encrypting-password-issue/m-p/2357099#M122477</guid>
      <dc:creator>Vianney</dc:creator>
      <dc:date>2014-04-24T17:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypting password issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Encrypting-password-issue/m-p/2357100#M122478</link>
      <description>Note that ROT13 is a poor encoding method, just the 26 letters are encoded, and it's reversible : encode 2 times your password (click 2 times on Cypher) and your password will be shown again...</description>
      <pubDate>Thu, 24 Apr 2014 17:16:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Encrypting-password-issue/m-p/2357100#M122478</guid>
      <dc:creator>Vianney</dc:creator>
      <dc:date>2014-04-24T17:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypting password issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Encrypting-password-issue/m-p/2357101#M122479</link>
      <description>Hi Viannou,
&lt;BR /&gt; First of all thanks for you reply and your suggestions regarding ROT13 algo and its pitfalls.
&lt;BR /&gt;It works for me
&lt;BR /&gt;Thanks a ton for that..
&lt;BR /&gt;I have another doubt What if password contains some numeric value,in that ROT13 won't encrypt that.
&lt;BR /&gt;Can you provide me any link or demo showing how to encrypt such password in talend job.
&lt;BR /&gt;
&lt;BR /&gt;With Regards
&lt;BR /&gt;Sanjay Tiwari</description>
      <pubDate>Fri, 25 Apr 2014 06:40:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Encrypting-password-issue/m-p/2357101#M122479</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-04-25T06:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypting password issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Encrypting-password-issue/m-p/2357102#M122480</link>
      <description>Look at the ROT13 java code
&lt;BR /&gt;
&lt;PRE&gt;            if (c &amp;gt;= 'a' &amp;amp;&amp;amp; c &amp;lt;= 'm')&lt;BR /&gt;                c += 13;&lt;BR /&gt;            else if (c &amp;gt;= 'A' &amp;amp;&amp;amp; c &amp;lt;= 'M')&lt;BR /&gt;                c += 13;&lt;BR /&gt;            else if (c &amp;gt;= 'n' &amp;amp;&amp;amp; c &amp;lt;= 'z')&lt;BR /&gt;                c -= 13;&lt;BR /&gt;            else if (c &amp;gt;= 'N' &amp;amp;&amp;amp; c &amp;lt;= 'Z')&lt;BR /&gt;                c -= 13;&lt;/PRE&gt;
&lt;BR /&gt;It's based on the ascii table. It says : "when you have a 'a' transform it with de 13th leter after 'a' (= 'n') "
&lt;BR /&gt;This should do the job for numbers...
&lt;BR /&gt;
&lt;PRE&gt;            else if (c &amp;gt;= '0' &amp;amp;&amp;amp; c &amp;lt;= '4')&lt;BR /&gt;                c += 5;&lt;BR /&gt;            else if (c &amp;gt;= '5' &amp;amp;&amp;amp; c &amp;lt;= '9')&lt;BR /&gt;                c -= 5;&lt;/PRE&gt;
&lt;BR /&gt;0 --&amp;gt; 5
&lt;BR /&gt;1 --&amp;gt; 6
&lt;BR /&gt;2 --&amp;gt; 7
&lt;BR /&gt;3 --&amp;gt; 8
&lt;BR /&gt;4 --&amp;gt; 9
&lt;BR /&gt;5 --&amp;gt; 0
&lt;BR /&gt;6 --&amp;gt; 1
&lt;BR /&gt;7 --&amp;gt; 2
&lt;BR /&gt;8 --&amp;gt; 3
&lt;BR /&gt;9 --&amp;gt; 4</description>
      <pubDate>Fri, 25 Apr 2014 09:01:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Encrypting-password-issue/m-p/2357102#M122480</guid>
      <dc:creator>Vianney</dc:creator>
      <dc:date>2014-04-25T09:01:04Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypting password issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Encrypting-password-issue/m-p/2357103#M122481</link>
      <description>Hi
&lt;BR /&gt;Thanks for nice explaination,So you are saying i should use ROT5 with ROT13. 
&lt;BR /&gt;what i have got you are just dividing the whole alphabets or number available such 26/2=13 in case of alphabets(ROT13) and 10/2=5 in case of numbers(ROT5).You are adding 13 or 5 accordingly,that's fine.
&lt;BR /&gt;But what if password contains characters like #,@,$ and so on,in that case what to do? Would you please provide me code how can i use ROT47 if problem(@,#,$,%) cann't be solved using ROT13</description>
      <pubDate>Fri, 25 Apr 2014 10:26:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Encrypting-password-issue/m-p/2357103#M122481</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-04-25T10:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypting password issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Encrypting-password-issue/m-p/2357104#M122482</link>
      <description>rot13 is not encryption and should not be used for passwords.&lt;BR /&gt;If you really want to encrypt your passwords, you should be looking at something like pgp or gpg.&lt;BR /&gt;rot13 was maybe good enough 2000 years ago.</description>
      <pubDate>Sun, 27 Apr 2014 07:03:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Encrypting-password-issue/m-p/2357104#M122482</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-04-27T07:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypting password issue</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Encrypting-password-issue/m-p/2357105#M122483</link>
      <description>Thanks a ton tal00000 for your suggestions.I will go through what you have specified.</description>
      <pubDate>Sat, 03 May 2014 07:59:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Encrypting-password-issue/m-p/2357105#M122483</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-03T07:59:17Z</dc:date>
    </item>
  </channel>
</rss>

