example code
WebBrowser wb = new WebBrowser();
string securedKey = "1ed9f7e4";
and I want to transfer the variable "securedKey" to the WebBrowser object on the same form. I can do it per POST or GET but its not secure.
I can encrypt the variable and then send to the Web but its easy to debug the application and see how I encrypt and where to send it.
What is the securest way to do something like that?