按位运算如何计算回来

发布于 2024-12-15 13:27:21 字数 83 浏览 3 评论 0原文

我想用按位运算加密一些信息。

例如两个数字按位或:8和1到9。

但是我如何加密它以获得我的根号?

格雷茨

i want to crypt some informations with bitwise operations.

For example two numbers with bitwise or: 8 and 1 to 9.

But how can i encrypt it it to get my root nombers?

greetz

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

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

发布评论

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

评论(3

注定孤独终老 2024-12-22 13:27:22

您可以使用按位异或来实现此目的,它称为异或密码

You can use a bitwise xor to achieve this, it's known as a xor cipher.

晨光如昨 2024-12-22 13:27:22

在所有按位运算中,只有 XOR 是可逆的。寻找XOR-cipher,这是加密数据的最简单方法。
就您而言,您仍然必须至少知道两个数字中的一个才能恢复第二个数字!
没有办法可以同时恢复两者。

From all bitwise operations only XOR is reversible. Look for XOR-cipher, the easiest way to encrypt your data.
In your case you still have to know at least one number from both to restore the second one!
There is no way that you can restore both.

一梦浮鱼 2024-12-22 13:27:21

OR 是不可逆的。异或是可逆的。

OR is not reversible. XOR is reversible.

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