使用 PHP,如何将加密文件发送到 .NET 脚本进行解密

发布于 2024-11-05 11:42:28 字数 269 浏览 0 评论 0原文

场景如下:

尝试在 Intranet 系统上实现单点登录,但混合了 PHP 和 .NET 脚本,我是 PHP 人员,但 cookie 是由 .NET 脚本创建和加密的,我不知道如何实现使用 PHP 解密 cookie,因此我将把加密的 cookie 发送到 .NET 脚本进行解密,然后 .NET 脚本将使用 JSON 向我发回数据,所有这些都使用 https 安全连接。我试图找出将加密的 cookie 发送到 .NET 脚本的最佳方法是什么,我可以使用“GET”将加密的 cookie 作为字符串发送吗?

Here's the scenario:

Trying to implement a single sign on intranet system, but there are mixed PHP and .NET scripts, I am the PHP guy, but the cookie was created and encrypted by a .NET scripte, I can't figure out how to decrypt the cookie using PHP, so I'm going to send the encrypted cookie to the .NET script for decryption, and then the .NET script will send me back the data with JSON, all using a https secured connection. I am trying to figure out what's the best way to send the encrypted cookie over to the .NET script, can I just send the encrypted cookie as a string using "GET"?

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

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

发布评论

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

评论(1

夏日落 2024-11-12 11:42:28

如果加密的 cookie 是一个字符串并且相当短,则只需使用 GET 将其在查询字符串中发送即可。如果是二进制数据,则首先对其进行base64_encode。如果数据很长,您可能需要执行 POST。

不过,了解 .NET 代码如何解密可能会更好。然后你可以用PHP编写你自己的解密。

If the encrypted cookie is a string and reasonably short, then just send it in a query string with GET. If it's binary data, then base64_encode it first. If the data is long, you'll probably want to do a POST instead.

You're probably better off, though, understanding how the .NET code decrypts things. Then you can write your own decryption in PHP.

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