I have a very simple encryption class using tripleDES to encrypt the query string for a particular page on my site. I do this to prevent people page scraping sequentially based on our database IDs.
Anyhow, I've used this encryption method
However, it includes 3d%
and some other special characters
that shouldn't be in a query string and are rejected by Url Scan for security purposes. There is a =
in the actual encrypted string that is generated. I don't want to change URL scan, but I was wondering if there is a way to limit the encryption characters for the tripleDES crypto provider
or something. I know next to nothing about encyrption and I'm really just obfuscating the query string, so I'm open to other options regarding my encryption of the query string.