0

Im currently working on a network tools website and got stuck at the md5 decrypter, I want to send the input from my website to http://md5decryption.com/ and then retrieve it.

is there anyway to do that? thankyou

1 Answers1

-1

MD5 is neither a decrypter nor an encrypter it is a HASH algorithm. However, it's not a secure hash algorithm, if you want to use hash go with SHA3 which is a subset of KECCAK. If you need to use symmetric encryption this is totally different story. I advise you to read more about crypto primitives then start using the right ones.

Nayef
  • 364
  • 2
  • 8
  • 22