23
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
string InputBytes = "Technology crowds";
10
using (SHA384 sha384Hash = SHA384.Create())
11
{
12
//From String to byte array
13
byte[] sourceBytes = Encoding.UTF8.GetBytes(InputBytes);
14
byte[] hashBytes = sha384Hash.ComputeHash(sourceBytes);
15
16
// replacing - with empty
17
string hash = BitConverter.ToString(hashBytes).Replace("-", String.Empty);
18
19
// final output
20
Console.WriteLine(string.Format("The SHA384 hash of {0} is: {1}",InputBytes, hash));
21
}
22
}
23
}
Cached Result
The SHA384 hash of Technology crowds is: 1E164130936A24159795AB319A52B695BB28933DF99817D50802C394D3B087A114B5EFF4603B39473703A0DD9F7FFF6F