Javascript 异或加密 | PHP 异或解密
我正在寻找一种简单而轻量级的方法,使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您对其进行异或,则标题中很可能会出现无效字符。
如果你不需要安全性,那么好的 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...