I'm sending sensitive data back and forth using AJAX requests in my ASP.NET MVC2 application using JSON. If I'm potentially sending back sensitive data back to the client, is there a preferred mechanism of securing the data such that it can then be decrypted by the javascript code? Is there a standard encryption library that I can use in JS and C# together?
Thanks