35
1
using System;
2
using System.Text;
3
using System.Security.Cryptography;
4
5
public class Program
6
{
7
public static void Main()
8
{
9
// input, plain text here
10
string plainText = "Technology crowds";
11
string hashedData = ComputeStringToSha256Hash(plainText);
12
13
// Ouput of plaintext to Sha256Hash
14
Console.WriteLine(string.Format("The SHA256 hash of {0} is: {1}",plainText,hashedData));
15
16
}
17
18
static string ComputeStringToSha256Hash(string plainText)
19
{
20
// Create a SHA256 hash from string
21
using (SHA256 sha256Hash = SHA256.Create())
22
{
23
// Computing Hash - returns here byte array
24
byte[] bytes = sha256Hash.ComputeHash(Encoding.UTF8.GetBytes(plainText));
25
26
// now convert byte array to a string
27
StringBuilder stringbuilder = new StringBuilder();
28
for (int i = 0; i < bytes.Length; i++)
29
{
30
stringbuilder.Append(bytes[i].ToString("x2"));
31
}
32
return stringbuilder.ToString();
33
}
34
}
35
}
Cached Result
The SHA256 hash of Technology crowds is: 8e1726adb4b1ba43bb0bdf6595ffa3a7531558b5c8aa3c20251987f2406c870f