mirror of
https://github.com/MadMin3r/UnconfuserEx
synced 2026-06-23 09:25:19 +00:00
10 lines
153 B
C#
10 lines
153 B
C#
namespace UnConfuserEx.Protections.Constants
|
|
{
|
|
internal interface IDecryptor
|
|
{
|
|
|
|
byte[] DecryptData(uint[] data, uint[] key);
|
|
|
|
}
|
|
}
|