30 lines
677 B
C#
30 lines
677 B
C#
namespace Questionable.QuestPaths;
|
|
|
|
internal static class PathBundleSecret
|
|
{
|
|
private static readonly byte[] A = new byte[32]
|
|
{
|
|
14, 205, 205, 220, 252, 13, 221, 232, 100, 189,
|
|
37, 224, 91, 77, 175, 255, 30, 195, 23, 136,
|
|
234, 230, 125, 209, 122, 165, 20, 174, 100, 226,
|
|
27, 222
|
|
};
|
|
|
|
private static readonly byte[] B = new byte[32]
|
|
{
|
|
241, 56, 43, 159, 122, 127, 111, 25, 223, 150,
|
|
24, 59, 99, 24, 253, 141, 217, 107, 154, 16,
|
|
247, 125, 175, 254, 169, 41, 27, 2, 18, 101,
|
|
46, 175
|
|
};
|
|
|
|
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;
|
|
}
|
|
}
|