在C#中可以使用SHA256Managed
類來實現SHA256加密算法。以下是一個簡單的示例代碼:
using System;
using System.Security.Cryptography;
using System.Text;
public class Program
{
public static string CalculateSHA256(string input)
{
using (SHA256 sha256 = SHA256Managed.Create())
{
byte[] bytes = Encoding.UTF8.GetBytes(input);
byte[] hash = sha256.ComputeHash(bytes);
StringBuilder sb = new StringBuilder();
for (int i = 0; i < hash.Length; i++)
{
sb.Append(hash[i].ToString("x2"));
}
return sb.ToString();
}
}
public static void Main()
{
string input = "Hello, World!";
string hash = CalculateSHA256(input);
Console.WriteLine("Input: " + input);
Console.WriteLine("SHA256 Hash: " + hash);
}
}
在上面的示例中,CalculateSHA256
方法接受一個字符串輸入并返回其SHA256散列值。主函數中演示了如何使用該方法來計算SHA256散列并輸出結果。您可以將您要加密的字符串替換為input
變量中的內容。