30 lines
679 B
C#
30 lines
679 B
C#
namespace Questionable.GatheringPaths;
|
|
|
|
internal static class PathBundleSecret
|
|
{
|
|
private static readonly byte[] A = new byte[32]
|
|
{
|
|
145, 72, 249, 36, 189, 185, 130, 238, 193, 10,
|
|
202, 232, 4, 205, 253, 37, 116, 120, 105, 80,
|
|
155, 225, 237, 122, 124, 183, 185, 180, 222, 128,
|
|
163, 58
|
|
};
|
|
|
|
private static readonly byte[] B = new byte[32]
|
|
{
|
|
38, 241, 153, 134, 236, 129, 153, 181, 53, 177,
|
|
92, 29, 47, 248, 180, 1, 80, 8, 68, 19,
|
|
82, 214, 85, 67, 101, 195, 46, 138, 196, 69,
|
|
206, 117
|
|
};
|
|
|
|
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;
|
|
}
|
|
}
|