2020-10-24 16:02:38 -04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IRemoteAssemblyHandler
|
|
|
|
|
{
|
|
|
|
|
IEnumerable<Assembly> DecryptAssemblies(string[] encryptedAssemblies);
|
|
|
|
|
IEnumerable<string> DecryptScripts(string[] encryptedScripts);
|
|
|
|
|
}
|
2022-01-26 11:32:16 -05:00
|
|
|
|
}
|