30 lines
686 B
C#
30 lines
686 B
C#
namespace Questionable.SeasonalDutyPaths;
|
|
|
|
internal static class PathBundleSecret
|
|
{
|
|
private static readonly byte[] A = new byte[32]
|
|
{
|
|
192, 237, 68, 154, 123, 161, 164, 81, 179, 101,
|
|
208, 145, 185, 118, 184, 66, 42, 173, 202, 110,
|
|
201, 113, 73, 242, 250, 58, 135, 189, 143, 92,
|
|
151, 77
|
|
};
|
|
|
|
private static readonly byte[] B = new byte[32]
|
|
{
|
|
239, 73, 204, 3, 150, 201, 87, 43, 137, 223,
|
|
14, 253, 125, 35, 109, 186, 32, 12, 130, 132,
|
|
201, 118, 255, 168, 253, 104, 107, 98, 213, 28,
|
|
83, 69
|
|
};
|
|
|
|
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;
|
|
}
|
|
}
|