修正密钥函数

This commit is contained in:
Longfeng Qin 2024-09-12 12:32:38 +08:00
parent 68114e9aa5
commit 934298497c
2 changed files with 50 additions and 39 deletions

View File

@ -5,6 +5,7 @@ using Org.BouncyCastle.Security;
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Crypto.Parameters;
using System.Security.Cryptography;
using PSO2SERVER;
public static class KeyLoader
{
@ -51,4 +52,33 @@ public static class KeyLoader
return rsa;
}
}
public static void SaveKeyToFile(string filePath, byte[] keyBlob)
{
using (FileStream outFile = File.Create(filePath))
{
outFile.Write(keyBlob, 0, keyBlob.Length);
}
}
public static void ProcessKeyFiles(string pemFile, string blobFile, bool isPrivateKey, bool isGenerating)
{
if (File.Exists(pemFile) && !File.Exists(blobFile) && isGenerating)
{
Logger.Write("[KEY] 发现{0}文件, 正在生成新的{1}密钥 {2}...", pemFile, isPrivateKey ? "私有" : "公共", blobFile);
RSACryptoServiceProvider rsa = isPrivateKey ? LoadPrivateKeyFromPem(pemFile) : LoadPublicKeyFromPem(pemFile);
byte[] cspBlob = rsa.ExportCspBlob(isPrivateKey);
SaveKeyToFile(blobFile, cspBlob);
}
}
public static void GenerateAndSaveKeyIfNotExists(RSACryptoServiceProvider rsa, string keyBlobFile, bool isPrivateKey)
{
if (!File.Exists(keyBlobFile))
{
Logger.WriteWarning("[KEY] 未找到 {0} 文件, 正在生成新的{1}密钥...", keyBlobFile, isPrivateKey ? "私有" : "公共");
byte[] cspBlob = rsa.ExportCspBlob(isPrivateKey);
SaveKeyToFile(keyBlobFile, cspBlob);
}
}
}

View File

@ -140,45 +140,9 @@ namespace PSO2SERVER
Environment.Exit(0);
}
void SaveKeyToFile(string filePath, byte[] keyBlob)
{
using (FileStream outFile = File.Create(filePath))
{
outFile.Write(keyBlob, 0, keyBlob.Length);
}
}
Instance = new ServerApp();
if (File.Exists(ServerPrivatePem) && !File.Exists(ServerPrivateKeyBlob))
{
Logger.Write("[KEY] 发现私有密钥 {0} 文件, 正在生成新的私有密钥 {1}...", ServerPrivatePem, ServerPrivateKeyBlob);
RSACryptoServiceProvider rsaPrivate = KeyLoader.LoadPrivateKeyFromPem(ServerPrivatePem);
byte[] cspBlobPub2 = rsaPrivate.ExportCspBlob(false);
SaveKeyToFile(ServerPrivateKeyBlob, cspBlobPub2);
}
if (File.Exists(ServerSEGAPem) && !File.Exists(ServerSEGAKeyBlob))
{
Logger.Write("[KEY] 发现SEGA公共密钥 {0} 文件, 正在生成新的公共密钥 {1}...", ServerSEGAPem, ServerSEGAKeyBlob);
RSACryptoServiceProvider rsaPublic = KeyLoader.LoadPublicKeyFromPem(ServerSEGAPem);
byte[] cspBlobPub2 = rsaPublic.ExportCspBlob(false);
SaveKeyToFile(ServerSEGAKeyBlob, cspBlobPub2);
}
RSACryptoServiceProvider rcsp = new RSACryptoServiceProvider();
if (!File.Exists(ServerPrivateKeyBlob))
{
Logger.WriteWarning("[KEY] 未找到 {0} 文件, 正在生成新的私有密钥...", ServerPrivateKeyBlob);
byte[] cspBlob = rcsp.ExportCspBlob(true);
SaveKeyToFile(ServerPrivateKeyBlob, cspBlob);
}
if (!File.Exists(ServerPublicKeyBlob))
{
Logger.WriteWarning("[KEY] 未找到 {0} 文件, 正在生成新的公共密钥...", ServerPublicKeyBlob);
byte[] cspBlobPub = rcsp.ExportCspBlob(false);
SaveKeyToFile(ServerPublicKeyBlob, cspBlobPub);
}
Instance.GenerateKeys();
// Fix up startup message [KeyPhact]
Logger.WriteHeader();
@ -188,9 +152,26 @@ namespace PSO2SERVER
Thread.Sleep(1000);
//System.Data.Entity.Database.SetInitializer(new System.Data.Entity.DropCreateDatabaseIfModelChanges<ServerEf>());
Instance = new ServerApp();
_ = Instance.StartAsync();
}
public void GenerateKeys()
{
// Process private key files
KeyLoader.ProcessKeyFiles(ServerPrivatePem, ServerPrivateKeyBlob, true, File.Exists(ServerPrivatePem));
// Process SEGA public key files
KeyLoader.ProcessKeyFiles(ServerSEGAPem, ServerSEGAKeyBlob, false, File.Exists(ServerSEGAPem));
// Process general RSA keys
using (RSACryptoServiceProvider rsa = new RSACryptoServiceProvider())
{
// Process private and public RSA keys
KeyLoader.GenerateAndSaveKeyIfNotExists(rsa, ServerPrivateKeyBlob, true);
KeyLoader.GenerateAndSaveKeyIfNotExists(rsa, ServerPublicKeyBlob, false);
}
}
public async Task StartAsync()
{
var startTime = DateTime.Now; // 记录启动开始时间