Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
示例代码
WebBrowser wb = new WebBrowser(); string securedKey = "1ed9f7e4";
我想将变量“securedKey”传输到同一表单上的 WebBrowser 对象。我可以通过 POST 或 GET 来完成,但它并不安全。
我可以加密变量然后发送到 Web,但它很容易调试应用程序并查看我如何加密以及将其发送到何处。
做这样的事情最安全的方法是什么?
使用 HTTPS 而不是 HTTP。还有其他方法,但由于您特别要求最安全,这是您唯一的选择。