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