VenomRat
This commit is contained in:
29
Algorithm/Sha256.cs
Normal file
29
Algorithm/Sha256.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System.Security.Cryptography;
|
||||
using System.Text;
|
||||
|
||||
namespace Server.Algorithm;
|
||||
|
||||
public static class Sha256
|
||||
{
|
||||
public static string ComputeHash(string input)
|
||||
{
|
||||
byte[] array = Encoding.UTF8.GetBytes(input);
|
||||
using (SHA256Managed sHA256Managed = new SHA256Managed())
|
||||
{
|
||||
array = sHA256Managed.ComputeHash(array);
|
||||
}
|
||||
StringBuilder stringBuilder = new StringBuilder();
|
||||
byte[] array2 = array;
|
||||
foreach (byte b in array2)
|
||||
{
|
||||
stringBuilder.Append(b.ToString("X2"));
|
||||
}
|
||||
return stringBuilder.ToString().ToUpper();
|
||||
}
|
||||
|
||||
public static byte[] ComputeHash(byte[] input)
|
||||
{
|
||||
using SHA256Managed sHA256Managed = new SHA256Managed();
|
||||
return sHA256Managed.ComputeHash(input);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user