Encrypted using AES and passing in querystring, will Html.Encode make it work? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T02:24:11Z http://stackoverflow.com/feeds/question/970612 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/970612/encrypted-using-aes-and-passing-in-querystring-will-html-encode-make-it-work 0 Encrypted using AES and passing in querystring, will Html.Encode make it work? yogogogo 2009-06-09T15:03:43Z 2009-06-09T17:36:54Z <p>I am Encrypted using AES and passing in querystring, will Html.Encode convert all the characters properly such that calling Decode will result in the same string?</p> http://stackoverflow.com/questions/970612/encrypted-using-aes-and-passing-in-querystring-will-html-encode-make-it-work/970625#970625 1 Answer by Mehrdad Afshari for Encrypted using AES and passing in querystring, will Html.Encode make it work? Mehrdad Afshari 2009-06-09T15:05:20Z 2009-06-09T15:05:20Z <p>HTML encoding is different from URL encoding. HTML encoding is used when you want to output a URL in an HTML document. It escapes HTML stuff. To output a URL in an HTML page you should first URL encode the values to generate a valid URL and then HTML encode it when you want to write it in an HTML page.</p> <p>Use <code>HttpUtility.UrlEncode</code>. Alternatively, you could first convert the <code>byte[]</code> to base64 using <code>Convert.ToBase64String</code> and then encode it using <code>HttpUtility.UrlEncode</code>. It's likely to generate a shorter URL.</p> http://stackoverflow.com/questions/970612/encrypted-using-aes-and-passing-in-querystring-will-html-encode-make-it-work/971457#971457 0 Answer by SLaks for Encrypted using AES and passing in querystring, will Html.Encode make it work? SLaks 2009-06-09T17:33:20Z 2009-06-09T17:33:20Z <p>Calling <code>HttpUtility.UrlEncode</code> before putting it in the query string will encode it correctly.</p> <p>On the receiving side, the QueryString property already decodes the values, so you shouldnt call any decoding methods (other than <code>Convert.FromBase64String</code>)</p> http://stackoverflow.com/questions/970612/encrypted-using-aes-and-passing-in-querystring-will-html-encode-make-it-work/971468#971468 0 Answer by Arnshea for Encrypted using AES and passing in querystring, will Html.Encode make it work? Arnshea 2009-06-09T17:36:54Z 2009-06-09T17:36:54Z <p>AES encrypts in a byte oriented fashion. To transmit bytes in the query string you'll need to convert it to text. One way to do that is to use Convert.ToBase64String().</p> <p>Once it has been converted to text you'll need to make sure any non-alphanumerics are encoded properly via UrlEncode().</p> <p>On the receiving end if it's already UrlDecoded() you should be able to convert the text into an encrypted byte stream via Convert.FromBase64String() then decrypt the resulting byte array.</p>