打印数据

This commit is contained in:
Longfeng Qin 2024-09-10 12:58:38 +08:00
parent b6a6e5f0cd
commit c7bc5cec65
2 changed files with 8 additions and 3 deletions

View File

@ -146,13 +146,13 @@ namespace PSO2SERVER.Database
// 执行一个简单的查询来测试数据库连接
context.Database.ExecuteSqlCommand("SELECT 1");
Logger.WriteInternal("[DB Test] 数据库连接成功。");
Logger.WriteInternal("[DBT] 数据库连接成功。");
return true;
}
}
catch (Exception ex)
{
Logger.WriteException("[DB Test] 数据库连接异常", ex);
Logger.WriteException("[DBT] 数据库连接异常", ex);
return false;
}
}

View File

@ -20,14 +20,19 @@ namespace PSO2SERVER.Packets.Handlers
// Extract the first 0x80 bytes into a separate array
var cryptedBlob = new byte[0x80];
var rsaBlob = File.ReadAllBytes("privateKey.blob");
Array.Copy(data, position, cryptedBlob, 0, 0x80);
Array.Reverse(cryptedBlob);
// Print the contents of cryptedBlob in hexadecimal format
var info = string.Format("[<--] 接收到的数据 (hex): ");
Logger.WriteHex(info, cryptedBlob);
// FIXME
if (Client.RsaCsp == null)
{
Client.RsaCsp = new RSACryptoServiceProvider();
var rsaBlob = File.ReadAllBytes("privateKey.blob");
Client.RsaCsp.ImportCspBlob(rsaBlob);
}