php相当于以下sha1加密c#代码

时间:2015-08-20 11:54:29

标签: c# php encryption sha1

我尝试将以下用于sha1密码加密检查的c#代码转换为PHP版本,但似乎失败了:

正如此代码在我的理解中 - > 1)编码成ASCII 2)字节数组中的存储3)将该字节数组加密到sha1并再次存入字节数组中的新字节[60] 4)将该字节数组转换成64位字符串。我无法在下面的代码中获得字节字符串部分。

 private static string ComputeHas(byte[] arry){

    StringBuilder sb = new StringBuilder(arry.Length);
    return Convert.ToBase64String(arry);
}
public static string SHA1HashEncode(string pwd)
{
    SHA1 sh = new SHA1CryptoServiceProvider();
    byte[] arr = new byte[60];
    string hash = "";
    byte[] array = Encoding.ASCII.GetBytes(pwd);
    arr = sh.ComputeHash(array);
    hash = ComputeHas(arr);
    return hash;
}

以下是我的尝试:

//convert string to ascii 
for($i = 0; $i < mb_strlen($pwd, 'ASCII'); $i++) {

$pwd1=ord($pwd[$i]); 
} 

//sha1 encryption of password 
$pwd2=sha1($pwd1);

到目前为止我所尝试的确切方法如下: //将字符串转换为ascii

for($i = 0; $i < mb_strlen($pwd, 'ASCII'); $i++)
{
    $pwd1=ord($pwd[$i]);
    $pwd2[]=$pwd1; 
}

//convert array to string
$pwdString = serialize($pwd2);

//compute hase of string
$pwdHash= array();
$pwdHash[]=array_fill(0,60,sha1($pwdString));

$pwdHashString=serialize($pwdHash);

//convert to 64 bit string encodeing

$pwd64encode=base64_encode($pwdHashString);
print_r($pwd64encode);

但是我没有准确地用PHP中的C#代码。

1 个答案:

答案 0 :(得分:0)

来自PHP的SHA1

文档
$variable = sha1("input");