obfuz/Runtime/AssertUtility.cs

16 lines
411 B
C#
Raw Normal View History

using System;
namespace Obfuz
{
2025-08-29 21:55:24 +08:00
public static class AssertUtility
{
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");
}
}
}
}