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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Jaeger
Contributor III
Contributor III

Compress and encrypt text in load skript

Hi, in load skript I create a link with some parameters e.g. customerId, date, storeId, etc.. 
The link is used in a straigt table to jump to an Qlik-external details webpage.
I don't want the link to show the parameters. So I thought there may be a way to encrypt the parameters of the link (e.g. JWT) or compress it, because it is quite long.
Is there a way to do that?
Thanks in advance.

Labels (1)
3 Replies
ManuelRühl
Partner - Specialist
Partner - Specialist

Hi,

You could hash the by using hash256(linkfield). 

Manuel Rühl
Jaeger
Contributor III
Contributor III
Author

I wonder if I can get back the unhashed value inside the target web application (with .Net Framework 4.8.1).

 

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

hash256() is one way so you could not recover the value in the webapp. Instead you could do something like Base64 encoding. Search "qlik base64 script" for some example script. 

-Rob