Javascript 异或加密 | PHP 异或解密

发布于 2024-12-05 16:44:23 字数 401 浏览 0 评论 0原文

我正在寻找一种简单而轻量级的方法,使用 javascript 加密字符串,然后在标头中发送字符串后使用 PHP 解密。 包含 JS 和 PHP 部分的代码

不需要安全性,因为它只是隐藏标头中字符串的一种方法。

XOR 似乎是最好/最简单的方法。有很多答案不完整的例子。

最简单的答案似乎是解码 JS 部分的这个答案所需的 PHP: 简单的Javascript加密,PHP使用共享密钥解密

向任何其他轻量级方法开放。

I am looking for a simple and lightweight method of encrypting a string with javascript then decrypting with PHP after it's been sent in a header. With code for both JS and PHP parts.

There is no need for security as it's merely a means to obscure the string in the header.

XOR seems to be the best/lightest way. There are plenty of examples with incomplete answers.

The easiest answer seems to be the required PHP to decode this answer of the JS part: Simple Javascript encrypt, PHP decrypt with shared secret key

Open to any other lightweight methods.

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

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

发布评论

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

评论(1

拥醉 2024-12-12 16:44:23

如果您对其进行异或,则标题中很可能会出现无效字符。

如果你不需要安全性,那么好的 ol' base64_encode 有什么问题吗? ()/base64_decode()?有大量 Javascript 等效代码...

If you XOR it, chances are you'll end up with invalid characters in your headers.

If you don't need security, what is wrong with good ol' base64_encode()/base64_decode()? There are plenty of Javascript equivalent codes out there...

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