qstbak/QuestPaths/Questionable.QuestPaths/PathBundleSecret.cs
2026-08-22 10:25:22 +10:00

30 lines
667 B
C#

namespace Questionable.QuestPaths;
internal static class PathBundleSecret
{
private static readonly byte[] A = new byte[32]
{
153, 30, 158, 74, 159, 14, 199, 185, 40, 166,
85, 6, 37, 167, 5, 38, 221, 72, 99, 65,
160, 20, 49, 186, 80, 230, 97, 96, 19, 189,
194, 228
};
private static readonly byte[] B = new byte[32]
{
30, 173, 221, 145, 116, 199, 45, 52, 72, 186,
186, 181, 129, 66, 39, 24, 195, 19, 249, 56,
14, 14, 134, 179, 100, 23, 222, 226, 221, 184,
242, 90
};
internal static byte[] Key()
{
byte[] array = new byte[A.Length];
for (int i = 0; i < array.Length; i++)
{
array[i] = (byte)(A[i] ^ B[i]);
}
return array;
}
}