Files
MadMin3r-UnconfuserEx/UnConfuserEx/Protections/Resources/IDecryptor.cs
T
2023-03-01 23:18:47 +00:00

15 lines
272 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UnConfuserEx.Protections.Resources
{
internal interface IDecryptor
{
public byte[] Decrypt(uint[] key, uint[] data);
}
}