30 lines
677 B
C#
30 lines
677 B
C#
namespace Questionable.FatePaths;
|
|
|
|
internal static class PathBundleSecret
|
|
{
|
|
private static readonly byte[] A = new byte[32]
|
|
{
|
|
48, 212, 251, 149, 233, 68, 48, 175, 219, 236,
|
|
217, 100, 130, 200, 255, 152, 233, 112, 177, 94,
|
|
93, 198, 133, 46, 110, 244, 154, 244, 247, 13,
|
|
145, 158
|
|
};
|
|
|
|
private static readonly byte[] B = new byte[32]
|
|
{
|
|
79, 60, 140, 255, 167, 84, 206, 132, 105, 228,
|
|
71, 209, 251, 6, 250, 62, 38, 86, 249, 66,
|
|
102, 234, 109, 58, 57, 229, 131, 131, 42, 66,
|
|
172, 97
|
|
};
|
|
|
|
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;
|
|
}
|
|
}
|