Question is simple. Cypted md5 data need to be possible decrypt theoretically. Can anyone explain this.
Thanks.
Question is simple. Cypted md5 data need to be possible decrypt theoretically. Can anyone explain this.
Thanks.
Here's a similar example to MD5:
function superInsecureHash(string) {
return string.length;
}
console.log(superInsecureHash("Hello world!")); // 12
Can you get from 12 back to "Hello world!" in any way? No, for similar reasons, you can't get back to the original from any proper hash function.
As it happens, though, MD5 is weak and broken. You shouldn't be using it at all, seek better alternatives.