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

30 lines
679 B
C#

namespace Questionable.GatheringPaths;
internal static class PathBundleSecret
{
private static readonly byte[] A = new byte[32]
{
219, 178, 133, 86, 37, 102, 10, 221, 178, 245,
197, 51, 203, 134, 231, 122, 11, 25, 197, 240,
44, 220, 234, 91, 41, 93, 186, 183, 17, 72,
109, 31
};
private static readonly byte[] B = new byte[32]
{
107, 156, 123, 202, 221, 77, 66, 210, 234, 31,
174, 55, 4, 171, 94, 88, 13, 248, 215, 191,
115, 73, 208, 117, 230, 149, 32, 243, 105, 23,
154, 250
};
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;
}
}