我有一个用加盐哈希加密密码的类。
但是,如果我想将 null 传递给类,则会收到以下错误:Cannot implicitly convert type string to byte[]
这是课程代码:
public class MyHash
{
public static string ComputeHash(string plainText,
string hashAlgorithm, byte[] saltBytes)
{
Hash Code
}
}
当我使用该类时,出现错误:“无法将类型字符串隐式转换为字节 []”
//Encrypt Password
byte[] NoHash = null;
byte[] encds = MyHash.ComputeHash(Password, "SHA256", NoHash);