[Extension] Convert a string to MD5, SHA-1 and SHA-256 hash

Hi, after a little bit of research on internet for working algorithms, finally i’ve done my first and small extension that help who wanna hashing their data, score, etc. strings to md5, sha-1, sha-256 and send it to a web server.

Enjoy it :wink:

2 Likes

Nice work…Keep it up :smiley:

Please use correct terms. This is no way of encryption, those are hashing functions. Encryption is for making data undecipherable without a password/passphrase/Initialisation vector. Hashing is made to make data illisible permanently. Connection won’t be much more secure. In case of a MitM attack, the attacker can still read what you send to the server, and even if he cannot know the password you entered is “passphrase1234”, he knows the password (hash) that was actually sent, and send it too to the server to gain access to your account.
Hashing in security is mainly used on the server to store the passwords.

1 Like

Great job !
I wanted that feature.:blush:
But the file could not be downloaded.:cry:
“This upload does not exist”

Ops I don’t know that my file upload was expired… Anyway I’ve reuploaded it:

2 Likes

Thank you! @Venom
I was able to download it.
I will use this.:wink:

1 Like

I wish there is tutorial/example on how to use it