What is md5() for?

前端 未结 13 1437
無奈伤痛
無奈伤痛 2021-01-31 01:57

I was reading this tutorial for a simple PHP login system.

In the end it recommends that you should encrypt your password using md5().

Though I know this is a be

13条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-31 02:38

    In addition to providing salt (or seed), the md5 is a complex hashing algorithm which uses mathematical rules to produce a result that is specifically not reversable because of the mathematical changes and dataloss in throughput.

    http://en.wikipedia.org/wiki/Cryptographic_hash_function

提交回复
热议问题