什么加密算法保留文件差异?
我想用最安全的算法加密一个文件,该算法也满足以下要求。
假设我们有一个 100 字节的文本文件,我们对其进行加密。 现在我们改变原始文件中的1个字节并再次加密。
如果我们对加密文件进行比较,那么理想的加密算法应该产生尽可能短的差异 - 例如 1 字节。
(本质上我想对加密文件进行增量备份并最大限度地减少带宽要求)
I would like to encrypt a file with most secure algorithm that also meets the following requirement.
Let's say we have a text file that has 100 Bytes and we encrypt it.
Now we change 1 byte in original file and encrypt again.
If we make a diff of the encrypted files then ideal encryption algorithm should produce the shortest diff possible - e.g. 1 byte.
(Essentially I want to do a incremental backup of encrypted files and minimize bandwidth requirements)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用CTR(计数器)模式,我相信您会得到您需要的结果。
If you use CTR (counter) mode, I believe you will get the result you require.