mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
16 lines
410 B
C#
16 lines
410 B
C#
using System;
|
|
|
|
namespace Obfuz
|
|
{
|
|
public static class AssetUtility
|
|
{
|
|
public static void VerifySecretKey(int expectedValue, int actualValue)
|
|
{
|
|
if (expectedValue != actualValue)
|
|
{
|
|
throw new Exception($"VerifySecretKey failed. Your secret key is unmatched with secret key used by current assembly in obfuscation");
|
|
}
|
|
}
|
|
}
|
|
}
|