I want decrypt a password which is encrypted by MD5.
MD5 is a hash algorithm, which means it’s a one-way encryption. You
have no way of decrypting the hash to the original password. And since
you are using a salt, even the rainbow tables hackers use will be
pretty useless.
If your app isn’t in production yet, you could consider a decryptable
algorithm, like the ones you can find in Sentry: http://sentry.rubyforge.org/
I want decrypt a password which is encrypted by MD5.
MD5 is a hash algorithm, which means it’s a one-way encryption. You
have no way of decrypting the hash to the original password. And since
you are using a salt, even the rainbow tables hackers use will be
pretty useless.
And at least according to the snippet posted, it’s not MD5 it’s SHA1
(which is harder to brute force)
I want decrypt a password which is encrypted by MD5.
MD5 is a hash algorithm, which means it’s a one-way encryption. You
have no way of decrypting the hash to the original password. And
since
you are using a salt, even the rainbow tables hackers use will be
pretty useless.
And at least according to the snippet posted, it’s not MD5 it’s SHA1
(which is harder to brute force)
Indeed, missed out on that, but the conclusion is still the same,
digesting is one way, so you can’t decrypt the password in a
convenient way. It’s easier just to implement a password reset routine.