obfuz/Plugins/dnlib/Protection/IEncryptionInstruction.cs

8 lines
260 B
C#
Raw Normal View History

namespace dnlib.Protection {
public interface IEncryptionInstruction {
void Encrypt(byte[] content, uint start, uint length, byte[] encryptionParam);
string GenerateDecryptExpression(string dataVarName, string dataLengthVarName, string keyVarName);
}
}