0

For example, how do I solve for x such that md5(β€œThe md5 of this sentence is [x].” = x? Is this possible with a reasonable amount of effort?

Are there any other common cryptographic hashes that make this easier or harder?

personjerry
  • 1,045
  • 8
  • 28

1 Answers1

4

Is this possible with a reasonable amount of effort?

No, at best brute force 2^128, at worst no.

Are there any other common cryptographic hashes that make this easier or harder?

SHA-3 or Skein allow a specified output size with a short output it would be easier. A longer hash output would be harder.

zaph
  • 111,848
  • 21
  • 189
  • 228