Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
desanip
Contributor
Contributor

Secret key for Encryption of passwords

Hello,

 

I have been using Base64 to encode and decode my passwords, but base64 is not an encryption scheme and does not provide me any security whatsoever. I need a secret key on top of the encrypted password and decrypt accordingly. Does talend have any component to support this? Can someone explain how i can achieve this in my talend job?

Labels (2)
1 Solution

Accepted Solutions
akumar2301
Specialist II
Specialist II

If you donot have preference on private key ,

You can use talend system routine for encryption/decryption PasswordEncryptUtil.

Otherwise this has good explanation ( you will find many good solution on forum like pgp etc , look for other posts)

https://stackoverflow.com/questions/34393803/cipher-encrypt-and-uncrypt-passwords-in-properties-file...

View solution in original post

3 Replies
Anonymous
Not applicable

Hi,

 

     There are no direct components in Talend for this use case. My suggestion would be to create a routine for your use case or create a custom component.

 

Warm Regards,
Nikhil Thampi

Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂

akumar2301
Specialist II
Specialist II

If you donot have preference on private key ,

You can use talend system routine for encryption/decryption PasswordEncryptUtil.

Otherwise this has good explanation ( you will find many good solution on forum like pgp etc , look for other posts)

https://stackoverflow.com/questions/34393803/cipher-encrypt-and-uncrypt-passwords-in-properties-file...
desanip
Contributor
Contributor
Author

Thanks everyone for the replies