Posts Tagged encryption
A simple way to encrypt query strings
Posted by Sai Panyam in Technology on March 26, 2010
Query strings are used to carry information. We might need to obfuscate them and provide some basic security without writing some elaborate encryption mechanism. Some standard ways of obfuscating, you will find is to Base64Encode the query string(remember to Url encode the resulting string as it is going to be on a url!): string data=”query [...]
