qstbak/QuestPaths/Questionable.QuestPaths/PathBundleSecret.cs
2026-08-19 13:19:57 +10:00

30 lines
671 B
C#

namespace Questionable.QuestPaths;
internal static class PathBundleSecret
{
private static readonly byte[] A = new byte[32]
{
73, 4, 92, 189, 214, 0, 53, 235, 105, 164,
216, 243, 244, 200, 198, 26, 227, 227, 153, 121,
241, 147, 166, 171, 63, 63, 121, 152, 52, 115,
89, 201
};
private static readonly byte[] B = new byte[32]
{
243, 132, 180, 1, 83, 89, 202, 66, 33, 20,
242, 184, 99, 15, 215, 2, 4, 125, 221, 134,
186, 51, 132, 151, 141, 220, 230, 57, 252, 77,
103, 57
};
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;
}
}