Can you figure out the password hashing scheme?

Posted by Adal on Stack Overflow See other posts from Stack Overflow or by Adal
Published on 2010-06-07T13:26:55Z Indexed on 2010/06/07 13:52 UTC
Read the original article Hit count: 270

Filed under:
|
|
|

I have two passwords and two resulting hashes. I can't figure out how the hash is derived from the password. I don't know if salting is used. I don't know if the password is hashed as a integer value or as a string (possibly Unicode).

Password: 6770 Hash: c12114b91a3841c143bbeb121693e80b

Password: 9591 Hash: 25238d578b6a61c2c54bfe55742984c1

The hash length seems to suggest MD5. Anybody has any ideas what I could try?

Note: This is not for hacking purposes. I'm trying to access a service through an API instead of it's desktop client, and I can't figure out how to compute the password hash. Currently instead of using my real password I'm sending directly the hash.

© Stack Overflow or respective owner

Related posts about security

Related posts about encryption