forked from aly/qstbak
30 lines
678 B
C#
30 lines
678 B
C#
namespace Questionable.SeasonalDutyPaths;
|
|
|
|
internal static class PathBundleSecret
|
|
{
|
|
private static readonly byte[] A = new byte[32]
|
|
{
|
|
251, 250, 177, 24, 254, 78, 188, 97, 60, 65,
|
|
105, 80, 183, 91, 229, 181, 77, 98, 171, 136,
|
|
116, 248, 217, 243, 101, 83, 97, 216, 103, 115,
|
|
176, 184
|
|
};
|
|
|
|
private static readonly byte[] B = new byte[32]
|
|
{
|
|
10, 142, 23, 61, 218, 98, 70, 165, 207, 244,
|
|
222, 75, 120, 153, 93, 56, 21, 57, 47, 72,
|
|
65, 245, 253, 11, 142, 198, 115, 115, 202, 36,
|
|
6, 70
|
|
};
|
|
|
|
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;
|
|
}
|
|
}
|