PHP MD5哈希

时间:2011-03-11 05:06:31

标签: c# php md5

我在C#中有一个哈希算法,简而言之,它是:

string hashCode = string.Empty;
        if (null != password)
        {
            System.Security.Cryptography.MD5 cryptography = new System.Security.Cryptography.MD5CryptoServiceProvider();
            byte[] code = cryptography.ComputeHash(Encoding.Default.GetBytes(password));
            StringBuilder stringBuilder = new StringBuilder();

            // Converting the code to string.
            for (int i = 0; i < code.Length; i++)
            {
                stringBuilder.Append(code[i].ToString("x2"));
            }

            hashCode = stringBuilder.ToString();
        }

        return hashCode;
    }

现在我需要在php中复制这种行为..... 提前谢谢......

注意:我无法更改C#行为,因为它已经实现,并且使用此算法将密码保存在我的数据库中。

2 个答案:

答案 0 :(得分:3)

PHP内置了MD5功能,你可以放入任何内容并获得十六进制字符串,这是你的想法吗?

MD5()

http://php.net/manual/en/function.md5.php

答案 1 :(得分:0)

见下文

Encryption in PHP