需要异或加密算法伪代码
我正在尝试找到 XOR 加密算法的伪代码。然而到目前为止我还没有运气。有人知道我在哪里可以找到它吗?
编辑:XOR 32 如果有帮助的话
编辑2:对于密码
I am trying to find the pseudocode for the XOR encryption algorithm. However I've had no luck so far. Anybody know where I can find it?
EDIT: XOR 32 if that helps
EDIT 2: For Passwords
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
假设您指的是 Vernam 密码,它只是:
请注意,这是相当弱的除非密钥流至少与输入一样长,并且永远不会被重复使用。
Assuming you mean a Vernam cipher, it's just:
Note that this is quite weak unless the key-stream is at least as long as the input, and is never re-used.
最基本的“异或加密算法”可能只是将明文与密钥进行异或,如下所示:
当密钥到达末尾时,它会回绕。
由于 XOR 是其自身的逆,因此以相同的方式再次将密文与密钥进行异或将揭示明文。
The most basic "xor encryption algorithm" is probably one that just XOR's the plaintext with the key, like so:
where the key just wraps around when it reaches the end.
Since XOR is its own inverse, XORing the ciphertext with the key again in the same fashion will reveal the plaintext.
你的意思是类似的东西吗?
Do you mean something like?
对于C:
For C: