272
Views
3
Comments
How to encrypt form input values from client side in outsystems web before submit?

Hello Everyone,

Good Day!!

I don't want to show my form input values while submitting.

As of now, we can see the values in network  tab if we inspect the element.

asdadasdasdas


From the above image,

If i click the send button, It should not show the entered value in  the headers or how can we encrypt that one.

2020-09-15 13-07-23
Kilian Hekhuis
 
MVP

Hi Aravind,

All of these values are sent over an https connection, which makes it secure. If you're not using an https connection, you're prone to sniffing anyways, so make sure you never use plain http.

UserImage.jpg
Pankaj Jain

Hi Aravind M,

In addition to HTTPS connection you can also use the forge component CryptoAPI to encrypt and decrypt your data. 

Hope it helps, Thanks.

2020-09-18 09-37-36
Devendra Baghel

Hi Aravind,

Better this should be handled by SSL as suggested by @Kilian. Encoding the inputs would need a Client side encryption(Javascript/Jquery)  and Server side decryption using the same algorithm . Only CryptoAPI would not work as its server level component

Best Regards

Devendra Baghel



Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.