1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 07:13:58 -05:00

implement remote assembly loading

This commit is contained in:
RaidMax
2020-10-24 15:02:38 -05:00
parent a0e564c978
commit a8684988f7
6 changed files with 174 additions and 16 deletions

View File

@ -0,0 +1,11 @@
using System.Collections.Generic;
using System.Reflection;
namespace SharedLibraryCore.Interfaces
{
public interface IRemoteAssemblyHandler
{
IEnumerable<Assembly> DecryptAssemblies(string[] encryptedAssemblies);
IEnumerable<string> DecryptScripts(string[] encryptedScripts);
}
}