You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
- 3No, there is no way to decrypt MD5, because MD5 is not a cipher. But as you probably meant its reversibility, you can only remember input+output pairs for a later lookup or try to find collisions. But you cannot ‘decrypt’ it.Gumbo– Gumbo2013-03-04 04:59:13 +00:00Commented Mar 4, 2013 at 4:59
- @Gumbo: how do the MD5 decryptors work? It doesn't matter whether they store the key value strings, the process suggests that MD5 doen't use a custom salt which means it can be reversed if you get to the core of it.Fr0zenFyr– Fr0zenFyr2013-06-14 04:52:23 +00:00Commented Jun 14, 2013 at 4:52
- 13Here's an oversimplified way of putting it: 5+5 is 10, but if you just have 10 you can't know that the original numbers were 5 and 5. However, if you know the algorithm (take two numbers and add them), then you can reverse the 10 to get 3+7 and it will be accepted because the result is the same.Niet the Dark Absol– Niet the Dark Absol2013-06-14 04:55:31 +00:00Commented Jun 14, 2013 at 4:55
- @Fr0zenFyr They are just huge lookup tables: Any known hash is mapped onto the input that was used to generate it; if someone looks up a hash that is known, you’ll get the input value.Gumbo– Gumbo2013-06-14 05:21:58 +00:00Commented Jun 14, 2013 at 5:21
- @Kolink It’s not that easy. Cryptographic hash functions should have the property that it’s infeasible to generate an input that has a given hash (pre-image attack).Gumbo– Gumbo2013-06-14 05:22:18 +00:00Commented Jun 14, 2013 at 5:22
| Show 2 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. python-3.x), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you
lang-php