Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Jaeger
Contributor II
Contributor II

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
www.mamaconsulting.de
Jaeger
Contributor II
Contributor II
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