<?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: UDF encrypt password in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/UDF-encrypt-password/m-p/2301172#M73317</link>
    <description>&lt;P&gt;I would use a&amp;nbsp;custom routine for this. Look here for a good example:&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://community.qlik.com/s/article/ka03p0000006EZrAAM" target="_blank"&gt;https://community.talend.com/t5/Design-and-Development/Create-a-user-routine-and-call-it-in-a-Job/ta-p/21665&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 19 Jun 2018 16:03:58 GMT</pubDate>
    <dc:creator>Aukema</dc:creator>
    <dc:date>2018-06-19T16:03:58Z</dc:date>
    <item>
      <title>UDF encrypt password</title>
      <link>https://community.qlik.com/t5/Talend-Studio/UDF-encrypt-password/m-p/2301169#M73314</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am looking for a java code to encrypt the password with the Argon2i algorithm, I find this &lt;A href="https://github.com/phxql/argon2-jvm" target="_blank" rel="nofollow noopener noreferrer"&gt;https://github.com/phxql/argon2-jvm&lt;/A&gt; but I do not know how to use it in Talend&lt;/P&gt;&lt;P&gt;Can someone help me on this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jun 2018 13:32:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/UDF-encrypt-password/m-p/2301169#M73314</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-19T13:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: UDF encrypt password</title>
      <link>https://community.qlik.com/t5/Talend-Studio/UDF-encrypt-password/m-p/2301170#M73315</link>
      <description>&lt;P&gt;You need to read the documentation, understand the provided steps... so read, google, trial and error... compile .jar file(s).&lt;BR /&gt;But luckily you can download them, I'm not sure if it are the latest version:&amp;nbsp;&lt;A title="Argon 2 - v2.4 JAR" href="https://jar-download.com/?detail_search=g%3A%22de.mkammerer%22+AND+a%3A%22argon2-jvm%22&amp;amp;search_type=av&amp;amp;a=argon2-jvm" target="_self" rel="nofollow noopener noreferrer"&gt;Argon 2 - v2.4 JAR&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;In Talend,&lt;/P&gt; 
&lt;P&gt;1 - via preferences you can point/add&amp;nbsp;additionial jar files (restart/reload Talend).&lt;/P&gt; 
&lt;P&gt;Or&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;2 - via component tPreJob -&amp;gt;&lt;STRONG&gt;&amp;nbsp;tLibraryLoad&lt;/STRONG&gt;.&amp;nbsp; Next in the component&amp;nbsp;&lt;EM&gt;advanced&lt;/EM&gt;&lt;/P&gt; 
&lt;PRE&gt;import &amp;lt;theArgonclasses and other dependency&amp;gt;;&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Next is java coding to generate the passwords, documentation.&lt;/P&gt; 
&lt;P&gt;tJava or tJavaRow&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Try it first with an example / simple job before you integrate it in a real job because you probably need to find your way to get things working.&lt;/P&gt; 
&lt;P&gt;Good Luck... go for it... if you got this to work... you unlocked the full potential of talend &lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MA9p.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138034i5F552429DA646D6F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MA9p.png" alt="0683p000009MA9p.png" /&gt;&lt;/span&gt;)&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jun 2018 14:14:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/UDF-encrypt-password/m-p/2301170#M73315</guid>
      <dc:creator>Jesperrekuh</dc:creator>
      <dc:date>2018-06-19T14:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: UDF encrypt password</title>
      <link>https://community.qlik.com/t5/Talend-Studio/UDF-encrypt-password/m-p/2301171#M73316</link>
      <description>&lt;P&gt;You need to read the documentation, understand the provided steps... so read, google, trial and error... compile .jar file(s).&lt;BR /&gt;But luckily you can download them, I'm not sure if it are the latest version:&amp;nbsp;&lt;A title="Argon 2 - v2.4 JAR" href="https://jar-download.com/?detail_search=g%3A%22de.mkammerer%22+AND+a%3A%22argon2-jvm%22&amp;amp;search_type=av&amp;amp;a=argon2-jvm" target="_self" rel="nofollow noopener noreferrer"&gt;Argon 2 - v2.4 JAR&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;In Talend,&lt;/P&gt; 
&lt;P&gt;1 - via preferences you can point/add&amp;nbsp;additionial jar files (restart/reload Talend).&lt;/P&gt; 
&lt;P&gt;Or&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;2 - via component tPreJob :&lt;STRONG&gt;&amp;nbsp;tLibraryLoad&lt;/STRONG&gt;.&amp;nbsp; Next in the component&amp;nbsp;&lt;EM&gt;advanced&lt;/EM&gt;&lt;/P&gt; 
&lt;PRE&gt;import &amp;lt;theArgonclasses and other dependency&amp;gt;;&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Next is java coding to generate the passwords, documentation.&lt;/P&gt; 
&lt;P&gt;tJava or tJavaRow&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Try it first with an example / simple job before you integrate it in a real job because you probably need to find your way to get things working.&lt;/P&gt; 
&lt;P&gt;Good Luck... go for it... if you got this to work... you unlocked the full potential of talend &lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MA9p.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138034i5F552429DA646D6F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MA9p.png" alt="0683p000009MA9p.png" /&gt;&lt;/span&gt;)&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jun 2018 14:49:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/UDF-encrypt-password/m-p/2301171#M73316</guid>
      <dc:creator>Jesperrekuh</dc:creator>
      <dc:date>2018-06-19T14:49:28Z</dc:date>
    </item>
    <item>
      <title>Re: UDF encrypt password</title>
      <link>https://community.qlik.com/t5/Talend-Studio/UDF-encrypt-password/m-p/2301172#M73317</link>
      <description>&lt;P&gt;I would use a&amp;nbsp;custom routine for this. Look here for a good example:&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://community.qlik.com/s/article/ka03p0000006EZrAAM" target="_blank"&gt;https://community.talend.com/t5/Design-and-Development/Create-a-user-routine-and-call-it-in-a-Job/ta-p/21665&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jun 2018 16:03:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/UDF-encrypt-password/m-p/2301172#M73317</guid>
      <dc:creator>Aukema</dc:creator>
      <dc:date>2018-06-19T16:03:58Z</dc:date>
    </item>
  </channel>
</rss>

