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

30 lines
673 B
C#

namespace Questionable.FatePaths;
internal static class PathBundleSecret
{
private static readonly byte[] A = new byte[32]
{
183, 148, 243, 175, 81, 166, 60, 18, 24, 50,
233, 21, 123, 58, 154, 174, 171, 214, 240, 163,
19, 222, 77, 126, 21, 146, 142, 237, 152, 128,
16, 0
};
private static readonly byte[] B = new byte[32]
{
167, 25, 83, 195, 35, 102, 138, 74, 178, 77,
83, 219, 116, 213, 10, 227, 200, 219, 186, 181,
158, 22, 1, 102, 179, 218, 15, 30, 54, 210,
214, 232
};
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;
}
}