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

16 lines
276 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UnConfuserEx.Protections.AntiTamper
{
internal interface IKeyDeriver
{
public uint[] DeriveKey(uint[] dst, uint[] src);
}
}