7

In general, can we construct a collision resistant hash function from a one-way function?

mti
  • 655
  • 3
  • 12

1 Answers1

14

Simon [Sim98] showed that is not possible to build a collision-resistant hash function from a one-way permutation (which is a stronger statement) in a black-box manner .

The main idea is to use the so-called oracle-separation technique. You can read more about it either here or in this survey.

[Sim98]: Daniel Simon. Finding collisions on a one-way street: Can secure hash functions be based on general assumptions? Eurocrypt'98.

ckamath
  • 5,188
  • 2
  • 21
  • 41
  • Thank you very much for the reference and the explanation! – mti Oct 16 '17 at 09:24
  • What about the following construction. Apply the one way permutation to a different collision resistant hash function. Obviously cheating but I wonder how this doesn't violate the proof. – Meir Maor Oct 16 '17 at 17:57
  • 2
    @MeirMaor Well, the way an oracle separation works makes sure that there is no hash function you could use in such a manner, unless it can be constructed from the OWP. Basically you introduce an oracle into the world that breaks all crypto. And in the next step you reintroduce a OWP as another oracle. All hash functions that may or may not exists in the real world are destroyed in the first step. – Maeher Oct 16 '17 at 21:18