加密查询字符串

发布于 2025-01-08 08:48:04 字数 241 浏览 1 评论 0原文

我已经使用 MachineKey.Encode 来加密作为查询字符串传递到页面的 ID,但正如预期的那样,这使得 URL 变得巨大。

是否有一个选项(例如 HTTP 处理程序)可以自定义 url 但仍加载所需的页面?

另外,我还没有弄清楚 MachineKey.Encode 是否使用我在 web.config 文件中定义的 MachineKey 来加密数据,任何人都可以通过支持这一点的网络信息为我确认这一点。

谢谢。

I have used MachineKey.Encode to encrypt a ID that is getting passed as a query string to a page but as expected this is making the URL huge.

Is there a option such as HTTP handlers that could customize the url but still load the required page?

Also I am yet to find out if MachineKey.Encode is using the MachineKey that I have defined in my web.config file to encrypt the data, can anybody confirm this for me with web information that backs this up.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你没皮卡萌 2025-01-15 08:48:04

此外,我还没有查明 MachineKey.Encode 是否使用我在 web.config 文件中定义的 MachineKey 来加密数据,任何人都可以通过支持这一点的网络信息为我确认这一点。

它确实使用了配置的键。 MachineKey 调用 MachineKeySection.EncryptOrDecryptData 来执行加密,该加密使用从机器密钥部分配置的加密对象。如果您想亲自查看,有趣的调用是 EncryptOrDecryptData=>EnsureConfig=>ConfigureEncryptionObject=>SetKeyOnSymAlgorithm< /代码>

Also I am yet to find out if MachineKey.Encode is using the MachineKey that I have defined in my web.config file to encrypt the data, can anybody confirm this for me with web information that backs this up.

It does indeed use the configured keys. MachineKey calls MachineKeySection.EncryptOrDecryptData to perform the encryption, which uses encryption objects configured from the machine key section. If you want to see for yourself, the interesting calls are EncryptOrDecryptData=>EnsureConfig=>ConfigureEncryptionObject=>SetKeyOnSymAlgorithm

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文