如何使用 PHP 撤消/反转 XOR?

发布于 2024-10-19 21:34:28 字数 169 浏览 7 评论 0原文

从概念上讲,我对 XOR 有点困惑。我有一个需要解密的轻型加密功能,但我不确定如何让它正常工作。

如果我的值最初是由:

$val = dechex($seed^$id);

那么,在其他地方,我有相应的$val和$seed,我如何生成$id?

I'm a bit confused by XOR, conceptually. I have an light encryption function I need to decrypt, and I'm not sure how to get it working correctly.

If my value was originally generated by:

$val = dechex($seed^$id);

Then, elsewhere, I have the corresponding $val and $seed, how can I generate the $id?

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

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

发布评论

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

评论(1

蓝眸 2024-10-26 21:34:28

XOR 是它自己的逆,因此您可以再次将 $val$seed 进行异或并得到 $id。不过,您可能需要先在 $val 上运行 hexdec

XOR is its own inverse, so you can just XOR $val by $seed again and get $id. You might need to run hexdec on $val first, though.

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