mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
5eb438e3ba
Added map scripting capabilities to UDB (#656). Documentation at https://biwa.github.io/udbscript-docs/
44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Security.Cryptography;
|
|
using System.Text;
|
|
|
|
namespace CodeImp.DoomBuilder
|
|
{
|
|
public static class SHA256Hash
|
|
{
|
|
private static SHA256 hasher = SHA256.Create();
|
|
|
|
public static string Get(Stream stream)
|
|
{
|
|
// Rewind the stream
|
|
stream.Position = 0;
|
|
|
|
// Check hash
|
|
byte[] data = hasher.ComputeHash(stream);
|
|
|
|
// Rewind the stream again...
|
|
stream.Position = 0;
|
|
|
|
// Create a new Stringbuilder to collect the bytes and create a string.
|
|
StringBuilder hash = new StringBuilder();
|
|
|
|
// Loop through each byte of the hashed data and format each one as a hexadecimal string.
|
|
for (int i = 0; i < data.Length; i++) hash.Append(data[i].ToString("x2"));
|
|
|
|
return hash.ToString();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Computes the SHA256 hash of a string.
|
|
/// </summary>
|
|
/// <param name="input">The string to compute the SHA256 hash of</param>
|
|
/// <returns>The SHA256 hash as a string</returns>
|
|
public static string Get(string input)
|
|
{
|
|
byte[] bytes = hasher.ComputeHash(Encoding.ASCII.GetBytes(input));
|
|
return string.Concat(Array.ConvertAll(bytes, x => x.ToString("x2")));
|
|
}
|
|
}
|
|
}
|
|
|