Internal add hash to login form for all logins, fix registration patch

This commit is contained in:
2025-09-21 17:42:06 -04:00
parent 584f19b016
commit 10e8797ba2
4 changed files with 48 additions and 13 deletions

14
Core/PluginHash.cs Normal file
View File

@@ -0,0 +1,14 @@
using System;
using System.IO;
using System.Reflection;
using System.Security.Cryptography;
namespace undead_universal_patch_il2cpp.Core;
public class PluginHash
{
public static string GetHash()
{
return BitConverter.ToString(MD5.Create().ComputeHash(File.OpenRead(Assembly.GetExecutingAssembly().Location))).Replace("-", "").ToLowerInvariant();
}
}