in php decode to encode using md5 funcation

link|improve this question
Duplicate of stackoverflow.com/questions/1240852/… – Lucanos Dec 14 '10 at 5:35
feedback

closed as not a real question by jasonbar, Dan Grossman, EboMike, Michael Petrotta, Jim Lewis Dec 14 '10 at 5:48

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

3 Answers

md5 produces a hash, hash functions are not reversible.

There are an infinite number of strings that share the same hash value.

link|improve this answer
feedback

md5 is a one way alogorithm

link|improve this answer
feedback

MD5 is, basically, a one-way hashing algorithm. It is used to create an (almost) unique hash for a string, a file, or a piece of data.

It can be somewhat decoded, but only really by hashing all possibly values for the clear value of the hash, generating their MD5 hashes, and then finding the matching pair.

link|improve this answer
feedback

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