mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
27 lines
705 B
C#
27 lines
705 B
C#
using System;
|
|
using System.IO;
|
|
using System.Security.Cryptography;
|
|
using System.Text;
|
|
using Wabbajack.Hashing.xxHash64;
|
|
|
|
namespace Wabbajack.Common;
|
|
|
|
public static class StringExtensions
|
|
{
|
|
public static string StringSha256Hex(this string s)
|
|
{
|
|
var sha = SHA256.Create();
|
|
using (var o = new CryptoStream(Stream.Null, sha, CryptoStreamMode.Write))
|
|
{
|
|
using var i = new MemoryStream(Encoding.UTF8.GetBytes(s));
|
|
i.CopyTo(o);
|
|
}
|
|
|
|
return sha.Hash!.ToHex();
|
|
}
|
|
|
|
public static bool ContainsCaseInsensitive(this string src, string contains)
|
|
{
|
|
return src.Contains(contains, StringComparison.InvariantCultureIgnoreCase);
|
|
}
|
|
} |