qstbak/FatePaths/Questionable.FatePaths/PathBundleSecret.cs
2026-08-17 20:29:32 +10:00

30 lines
676 B
C#

namespace Questionable.FatePaths;
internal static class PathBundleSecret
{
private static readonly byte[] A = new byte[32]
{
184, 146, 158, 4, 12, 188, 14, 129, 154, 207,
124, 249, 11, 86, 207, 158, 174, 9, 114, 165,
243, 163, 70, 242, 33, 231, 45, 140, 119, 185,
162, 26
};
private static readonly byte[] B = new byte[32]
{
150, 86, 230, 115, 69, 121, 30, 79, 176, 162,
216, 139, 248, 83, 68, 111, 173, 223, 203, 79,
42, 143, 208, 219, 192, 216, 102, 249, 57, 147,
95, 21
};
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;
}
}