打印数据
This commit is contained in:
parent
b6a6e5f0cd
commit
c7bc5cec65
@ -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;
|
||||
}
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user