problem

submit files such that:

  • SHA1(file1) = SHA1(file2)
  • SHA256(file1) SHA256(file2)
  • 2017KiB < file1, file2 < 2018KiB

You should take care the difference between KB and KiB. I’ve mistaken this and been confused.

solution

Hash functions having the Merkle-Damgard structure have the following property: H(a)=H(b)length(a)=length(b) implies $\forall c. H(a \oplus c) = H(b \oplus c). So you can get a desired pair with simply padding the pair, shattered.

$ { cat shattered-1.pdf ; yes | head -c 1643485 } > file-1.pdf
$ { cat shattered-2.pdf ; yes | head -c 1643485 } > file-2.pdf