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

30 lines
669 B
C#

namespace Questionable.GatheringPaths;
internal static class PathBundleSecret
{
private static readonly byte[] A = new byte[32]
{
83, 53, 162, 177, 116, 210, 154, 147, 32, 246,
109, 49, 21, 10, 185, 40, 3, 223, 158, 234,
82, 124, 250, 209, 185, 174, 77, 93, 58, 15,
16, 246
};
private static readonly byte[] B = new byte[32]
{
11, 0, 215, 132, 153, 74, 202, 77, 15, 86,
243, 43, 187, 26, 168, 53, 42, 2, 79, 60,
154, 215, 216, 52, 147, 70, 38, 49, 232, 46,
225, 130
};
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;
}
}