私が使用しているこの便利なハッシュ コードを誰かが元に戻すことはできますか?
using System.Security.Cryptography;
public static string EncodePasswordToBase64(string password)
{ byte[] bytes = Encoding.Unicode.GetBytes(password);
byte[] inArray = HashAlgorithm.Create("SHA1").ComputeHash(bytes);
return Convert.ToBase64String(inArray);
}
私がやることはすべてひどく失敗します:(。