我有一個類,使用salted散列加密密碼。不能隱式地將類型字符串轉換爲字節[]
但是如果我要一個空傳遞給該類我得到以下錯誤:Cannot implicitly convert type string to byte[]
下面是類代碼:
public class MyHash
{
public static string ComputeHash(string plainText,
string hashAlgorithm, byte[] saltBytes)
{
Hash Code
}
}
當我使用類我得到的錯誤:「無法隱式轉換string類型爲byte []」
//Encrypt Password
byte[] NoHash = null;
byte[] encds = MyHash.ComputeHash(Password, "SHA256", NoHash);
'string's應該可以轉換爲'byte []'? –