<?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: password decryption from .item files? in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/password-decryption-from-item-files/m-p/2279239#M54471</link>
    <description>&lt;P&gt;Hello &lt;A href="https://community.qlik.com/s/profile/0053p000007LQO1AAO"&gt;@MZein&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;Are your database passwords as stored in the .item files encrypted? There is a community article about:&lt;A title="https://community.talend.com/t5/Design-and-Development/Data-encryption-in-Talend-7-2-1/ta-p/200397" href="https://community.qlik.com/s/article/ka03p0000006Es7AAE" target="_self"&gt;https://community.talend.com/t5/Design-and-Development/Data-encryption-in-Talend-7-2-1/ta-p/200397&lt;/A&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Best regards&lt;/P&gt; 
&lt;P&gt;Sabrina&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 01 Nov 2019 02:57:18 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-11-01T02:57:18Z</dc:date>
    <item>
      <title>password decryption from .item files?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/password-decryption-from-item-files/m-p/2279235#M54467</link>
      <description>&lt;P&gt;I'm currently trying to load contexts from job exports' .item files, but have some problems with the password encryption.&lt;/P&gt;
&lt;P&gt;My test job has the password "jelszo", which is encrypted as "&lt;SPAN&gt;xlwfPYy+C+k=" in the .item file. But how could i get "xlwfPYy+C+k=" decrypted?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;tContextLoad doesn't do the decryption, it just gives back the encrypted password; the only solution i found on this forum, PasswordEncryptUtil.decryptPassword("xlwfPYy+C+k=") doesn't work either (in fact, PasswordEncryptUtil.encryptPassword("jelszo") gives back "fe4fa1e083f07ef9", so it looks like a totally different encryption method).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Do you have any advice, or is it simply not possible? I mean, Talend surely decrypt these somehow, but if it's a method only the Studio / the Administration Center can use, then it's a dead end.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Many Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Balazs&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 04:29:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/password-decryption-from-item-files/m-p/2279235#M54467</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T04:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: password decryption from .item files?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/password-decryption-from-item-files/m-p/2279236#M54468</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt; 
&lt;P&gt;In talend, you can write a routine to encrypt and decrypt stuff where you can use the standard java encryption mechanism&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Have you tried to decypt the passwords using the routines to see if it come out the expexted result?&lt;/P&gt; 
&lt;P&gt;Best regards&lt;/P&gt; 
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2019 04:59:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/password-decryption-from-item-files/m-p/2279236#M54468</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-14T04:59:11Z</dc:date>
    </item>
    <item>
      <title>Re: password decryption from .item files?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/password-decryption-from-item-files/m-p/2279237#M54469</link>
      <description>&lt;P&gt;Thanks for the suggestion. With some tLibraryLoads (org.talend.utils.jar, commons-codec-1.10.jar and org.talend.daikon_0.2.0.RELEASE.jar), it's almost simple:&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;org.talend.utils.security.CryptoHelper.getDefault().decrypt(&lt;/SPAN&gt;&lt;SPAN&gt;"xlwfPYy+C+k=") gives back "jelszo" as it should.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2019 21:28:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/password-decryption-from-item-files/m-p/2279237#M54469</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-15T21:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: password decryption from .item files?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/password-decryption-from-item-files/m-p/2279238#M54470</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Could you please give me an explaination to your solution as I have the same problem and need to solve it quickly. I tried your solution but it gives me an error (org.talend.utils can not be resolved to a variable) so I thaink the problem is how to import this library&lt;/P&gt;&lt;P&gt;Looking forward to your suggestion&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 10:16:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/password-decryption-from-item-files/m-p/2279238#M54470</guid>
      <dc:creator>MZein</dc:creator>
      <dc:date>2019-10-31T10:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: password decryption from .item files?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/password-decryption-from-item-files/m-p/2279239#M54471</link>
      <description>&lt;P&gt;Hello &lt;A href="https://community.qlik.com/s/profile/0053p000007LQO1AAO"&gt;@MZein&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;Are your database passwords as stored in the .item files encrypted? There is a community article about:&lt;A title="https://community.talend.com/t5/Design-and-Development/Data-encryption-in-Talend-7-2-1/ta-p/200397" href="https://community.qlik.com/s/article/ka03p0000006Es7AAE" target="_self"&gt;https://community.talend.com/t5/Design-and-Development/Data-encryption-in-Talend-7-2-1/ta-p/200397&lt;/A&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Best regards&lt;/P&gt; 
&lt;P&gt;Sabrina&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Nov 2019 02:57:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/password-decryption-from-item-files/m-p/2279239#M54471</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-01T02:57:18Z</dc:date>
    </item>
  </channel>
</rss>

