I'm creating a python script that logs into a website (in this case, it's the url to update your IPv4 endpoint for Tunnelbroker.net), and it uses a hashed username and password.
My question is this. If I use echo mypassword | md5sum it gives me a different hash than a python script that I found (using hashlib and hashdigest to accomplish the task).
For example, if "mypass" is robots, echo robots | md5sum gives me 2cf61812c352ec4fd0dae8f52874701d but if I run it through the python script, I get 27f5e15b6af3223f1176293cd015771d
- the script that I'm using is found at http://wiki.python.org/moin/Md5Passwords
My question is simply this: Will the website be able to decrypt either of those and get "robots"? I ask this, because I want to include a variation of the python script for hashing the password (in case the end user is on Windows or another operating system that can't generate a MD5 hash).
Thanks in advance, and have a great day:) Patrick.