35
1
using System;
2
using System.Security.Cryptography;
3
using System.Text;
4
5
public class Program
6
{
7
public static void Main()
8
{
9
//Console.WriteLine("Hello World");
10
HashSh1("Technology");
11
}
12
13
static string HashSh1(string input)
14
{
15
using (SHA1Managed sha1 = new SHA1Managed())
16
{
17
var hashSh1 = sha1.ComputeHash(Encoding.UTF8.GetBytes(input));
18
19
// declare stringbuilder
20
var sb = new StringBuilder(hashSh1.Length * 2);
21
22
// computing hashSh1
23
foreach (byte b in hashSh1)
24
{
25
// "x2"
26
sb.Append(b.ToString("X2").ToLower());
27
}
28
29
// final output
30
Console.WriteLine(string.Format("The SHA1 hash of {0} is: {1}",input,sb.ToString()));
31
32
return sb.ToString();
33
}
34
}
35
}
Cached Result
The SHA1 hash of Technology is: d018b082e8a372d9b860417e823c645114337927