1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-15 01:28:34 -05:00

fix remote plugin loading

This commit is contained in:
RaidMax
2024-06-29 11:14:09 -05:00
parent eec0a21005
commit 63e1f31c21
3 changed files with 5 additions and 5 deletions

View File

@ -55,7 +55,7 @@ namespace IW4MAdmin.Application.Misc
var decryptedContent = new byte[encryptedContent.Length];
var keyGen = new Rfc2898DeriveBytes(Encoding.UTF8.GetBytes(_appconfig.SubscriptionId), Encoding.UTF8.GetBytes(_appconfig.Id), IterationCount, HashAlgorithmName.SHA512);
var encryption = new AesGcm(keyGen.GetBytes(KeyLength));
var encryption = new AesGcm(keyGen.GetBytes(KeyLength),TagLength);
try
{