30 lines
687 B
C#
30 lines
687 B
C#
namespace Questionable.SeasonalDutyPaths;
|
|
|
|
internal static class PathBundleSecret
|
|
{
|
|
private static readonly byte[] A = new byte[32]
|
|
{
|
|
14, 238, 168, 186, 100, 48, 138, 129, 114, 53,
|
|
75, 217, 99, 224, 198, 248, 103, 129, 59, 33,
|
|
149, 44, 226, 149, 187, 253, 141, 40, 151, 199,
|
|
127, 185
|
|
};
|
|
|
|
private static readonly byte[] B = new byte[32]
|
|
{
|
|
87, 34, 127, 49, 238, 14, 221, 143, 224, 157,
|
|
207, 147, 247, 122, 30, 185, 79, 187, 117, 57,
|
|
242, 252, 100, 251, 176, 253, 30, 79, 135, 124,
|
|
73, 92
|
|
};
|
|
|
|
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;
|
|
}
|
|
}
|