按位运算如何计算回来
我想用按位运算加密一些信息。
例如两个数字按位或: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用按位异或来实现此目的,它称为异或密码。
You can use a bitwise xor to achieve this, it's known as a xor cipher.
在所有按位运算中,只有 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.
OR 是不可逆的。异或是可逆的。
OR is not reversible. XOR is reversible.