We have a portal that our customers use that is encrypted and has access to account info. We want to be able to pass a URL to LF Forms with an encrypted value to start the data lookup.
Example: Person logs into a website to see account info. They see a list of available public portal forms to which they have access. When clicking on the link, their account info is automatically populated via the account number being passed in the URL as well as backend SQL lookups. Now the person doesn't have to fill in the info we already have in the database.
Here is the issue: We can append account number to URL, but that becomes clear text. We are using an SSL connection and logged in via SSO to their primary web content provider. The issue with clear text is that customers can guess other account numbers and possibly gain access to other customers information.
What is the best way to obfuscate this information and still maintain the ability to pass information from our system to forms?