encryption - Decoding MD5 Hash into unicode -


this question has answer here:

āļĢ encodes 0f93821e0fbc6d3736da7df2c73024aa

i wondering if it's possible decode hash unicode form. if so, how can approach or how can perform this.

any appreciated, thanks.

whites11 has mentioned brute-forcing, take account not 'decoding' hash. hashing common inputs , comparing 2 hashes see if match, unless have set of common inputs may match hash unlikely anywhere it.

hashes intentionally mono-directional, can't think of why need either may need rethink logic of whatever project you're doing.

to summarize, can't decode hash, intentional , that's why hashing algorithms exist. , brute-forcing hashing common inputs see if match hash. it's commonly used password cracking etc. done common password data sets. may not useful in case.

http://www.md5online.org example of bruteforcing, database of bruteforce/tested hashes , unicode inputs. can try hashing basic word "password" , throwing in there, should show original unicode input if it's known hash!

edit: here 2 excellent informative videos cover hashing algorithms , brute-forcing hashes: https://www.youtube.com/watch?v=b4b8ktev4bg https://www.youtube.com/watch?v=7u-rbokanys


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -