in php decode to encode using md5 funcation
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.
|
md5 produces a hash, hash functions are not reversible. There are an infinite number of strings that share the same hash value. | |||
|
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. | |||
|
feedback
|