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

10 lines
153 B
C#

namespace UnConfuserEx.Protections.Constants
{
internal interface IDecryptor
{
byte[] DecryptData(uint[] data, uint[] key);
}
}