SCHALE.GameServer/SCHALE.Common/Crypto/TableService.cs

70 lines
2.6 KiB
C#
Raw Normal View History

2024-04-29 15:52:45 +00:00
using Google.FlatBuffers;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
2024-04-21 00:21:57 +00:00
using SCHALE.Common.Crypto.XXHash;
2024-04-29 15:52:45 +00:00
using SCHALE.Common.FlatData;
using System.Reflection;
2024-04-21 00:21:57 +00:00
using System.Text;
namespace SCHALE.Common.Crypto
{
public static class TableService
{
/// <summary>
/// General password gen by file name, encode to base64 for zips password
/// </summary>
/// <param name="key"></param>
/// <param name="length"></param>
/// <returns></returns>
public static byte[] CreatePassword(string key, int length = 20)
{
byte[] password = GC.AllocateUninitializedArray<byte>((int)Math.Round((decimal)(length / 4 * 3)));
using var xxhash = XXHash32.Create();
xxhash.ComputeHash(Encoding.UTF8.GetBytes(key));
2024-04-29 15:52:45 +00:00
var mt = new MersenneTwister((int)xxhash.HashUInt32);
2024-04-21 00:21:57 +00:00
int i = 0;
while (i < password.Length)
{
2024-04-29 15:52:45 +00:00
Array.Copy(BitConverter.GetBytes(mt.Next()), 0, password, i, Math.Min(4, password.Length - i));
2024-04-21 00:21:57 +00:00
i += 4;
}
return password;
}
2024-04-29 15:52:45 +00:00
#if DEBUG
public static void DumpExcels(string bytesDir, string destDir)
{
foreach (var type in Assembly.GetAssembly(typeof(AcademyFavorScheduleExcelTable))!.GetTypes().Where(t => t.IsAssignableTo(typeof(IFlatbufferObject)) && t.Name.EndsWith("ExcelTable")))
{
var bytesFilePath = Path.Join(bytesDir, $"{type.Name}.bytes");
2024-04-29 15:52:45 +00:00
if (!File.Exists(bytesFilePath))
{
Console.WriteLine($"bytes files for {type.Name} not found. skipping...");
continue;
}
var bytes = File.ReadAllBytes(bytesFilePath);
TableEncryptionService.XOR(type.Name, bytes);
var inst = type.GetMethod($"GetRootAs{type.Name}", BindingFlags.Static | BindingFlags.Public, [typeof(ByteBuffer)])!.Invoke(null, [new ByteBuffer(bytes)]);
try
{
var obj = type.GetMethod("UnPack", BindingFlags.Instance | BindingFlags.Public)!.Invoke(inst, null);
File.WriteAllText(Path.Join(destDir, $"{type.Name}.json"), JsonConvert.SerializeObject(obj, Formatting.Indented, new StringEnumConverter()));
Console.WriteLine($"Dumped {type.Name} successfully");
}
catch (Exception e)
{
Console.WriteLine($"Error dumping ${type.Name}");
}
2024-04-29 15:52:45 +00:00
}
}
#endif
2024-04-21 00:21:57 +00:00
}
}