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)

link|improve this question

feedback

1 Answer

If you use CTR (counter) mode, I believe you will get the result you require.

link|improve this answer
Or a stream cypher would give the same effect. A block cypher in CTR mode is effectively a stream cypher. – rossum Dec 27 '11 at 0:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.