dnlib submodule was renamed. Update code

This commit is contained in:
de4dot 2012-12-20 02:06:09 +01:00
parent ba54b607eb
commit e15c74ae3e
271 changed files with 488 additions and 488 deletions

6
.gitmodules vendored
View File

@ -1,3 +1,3 @@
[submodule "dot10"]
path = dot10
url = e:/work/dot10.git
[submodule "dnlib"]
path = dnlib
url = e:/work/dnlib.git

View File

@ -74,9 +74,9 @@
<Project>{5C93C5E2-196F-4877-BF65-96FEBFCEFCA1}</Project>
<Name>de4dot.mdecrypt</Name>
</ProjectReference>
<ProjectReference Include="..\dot10\src\dot10.csproj">
<ProjectReference Include="..\dnlib\src\dnlib.csproj">
<Project>{FDFC1237-143F-4919-8318-4926901F4639}</Project>
<Name>dot10</Name>
<Name>dnlib</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

View File

@ -21,7 +21,7 @@ using System;
using System.Collections.Generic;
using System.Reflection;
using System.Threading;
using dot10.DotNet;
using dnlib.DotNet;
using de4dot.blocks;
using de4dot.mdecrypt;

View File

@ -17,7 +17,7 @@
along with de4dot. If not, see <http://www.gnu.org/licenses/>.
*/
using dot10.DotNet;
using dnlib.DotNet;
using de4dot.blocks;
using de4dot.mdecrypt;

View File

@ -20,7 +20,7 @@
using System;
using System.Collections.Generic;
using System.Reflection;
using dot10.DotNet;
using dnlib.DotNet;
using de4dot.blocks;
namespace AssemblyData.methodsrewriter {

View File

@ -22,19 +22,19 @@ using System.Collections.Generic;
using System.Diagnostics;
using System.Reflection;
using System.Reflection.Emit;
using dot10.DotNet.Emit;
using dot10.DotNet;
using dnlib.DotNet.Emit;
using dnlib.DotNet;
using de4dot.blocks;
using OpCode = dot10.DotNet.Emit.OpCode;
using OpCodes = dot10.DotNet.Emit.OpCodes;
using OperandType = dot10.DotNet.Emit.OperandType;
using OpCode = dnlib.DotNet.Emit.OpCode;
using OpCodes = dnlib.DotNet.Emit.OpCodes;
using OperandType = dnlib.DotNet.Emit.OperandType;
using ROpCode = System.Reflection.Emit.OpCode;
using ROpCodes = System.Reflection.Emit.OpCodes;
namespace AssemblyData.methodsrewriter {
class CodeGenerator {
static Dictionary<OpCode, ROpCode> dot10ToReflection = new Dictionary<OpCode, ROpCode>();
static Dictionary<OpCode, ROpCode> dnlibToReflection = new Dictionary<OpCode, ROpCode>();
static CodeGenerator() {
var refDict = new Dictionary<short, ROpCode>(0x100);
foreach (var f in typeof(ROpCodes).GetFields(BindingFlags.Static | BindingFlags.Public)) {
@ -51,7 +51,7 @@ namespace AssemblyData.methodsrewriter {
ROpCode ropcode;
if (!refDict.TryGetValue(opcode.Value, out ropcode))
continue;
dot10ToReflection[opcode] = ropcode;
dnlibToReflection[opcode] = ropcode;
}
}
@ -332,7 +332,7 @@ namespace AssemblyData.methodsrewriter {
ROpCode convertOpCode(OpCode opcode) {
ROpCode ropcode;
if (dot10ToReflection.TryGetValue(opcode, out ropcode))
if (dnlibToReflection.TryGetValue(opcode, out ropcode))
return ropcode;
return ROpCodes.Nop;
}

View File

@ -18,7 +18,7 @@
*/
using System.Reflection;
using dot10.DotNet;
using dnlib.DotNet;
namespace AssemblyData.methodsrewriter {
class MField {

View File

@ -18,7 +18,7 @@
*/
using System.Reflection;
using dot10.DotNet;
using dnlib.DotNet;
namespace AssemblyData.methodsrewriter {
class MMethod {

View File

@ -20,7 +20,7 @@
using System;
using System.Collections.Generic;
using System.Reflection;
using dot10.DotNet;
using dnlib.DotNet;
using de4dot.blocks;
namespace AssemblyData.methodsrewriter {

View File

@ -20,7 +20,7 @@
using System;
using System.Collections.Generic;
using System.Reflection;
using dot10.DotNet;
using dnlib.DotNet;
using de4dot.blocks;
namespace AssemblyData.methodsrewriter {

View File

@ -22,12 +22,12 @@ using System.Collections.Generic;
using System.Diagnostics;
using System.Reflection;
using System.Reflection.Emit;
using dot10.DotNet.Emit;
using dot10.DotNet;
using dnlib.DotNet.Emit;
using dnlib.DotNet;
using de4dot.blocks;
using OpCode = dot10.DotNet.Emit.OpCode;
using OpCodes = dot10.DotNet.Emit.OpCodes;
using OpCode = dnlib.DotNet.Emit.OpCode;
using OpCodes = dnlib.DotNet.Emit.OpCodes;
using ROpCode = System.Reflection.Emit.OpCode;
using ROpCodes = System.Reflection.Emit.OpCodes;

View File

@ -20,7 +20,7 @@
using System;
using System.Collections.Generic;
using System.Reflection;
using dot10.DotNet;
using dnlib.DotNet;
using de4dot.blocks;
namespace AssemblyData.methodsrewriter {

View File

@ -20,7 +20,7 @@
using System;
using System.Collections.Generic;
using System.Reflection;
using dot10.DotNet;
using dnlib.DotNet;
using de4dot.blocks;
namespace AssemblyData.methodsrewriter {

View File

@ -20,7 +20,7 @@
using System;
using System.Collections.Generic;
using System.Reflection;
using dot10.DotNet;
using dnlib.DotNet;
using de4dot.blocks;
namespace AssemblyData.methodsrewriter {

View File

@ -20,7 +20,7 @@
using System;
using System.Collections.Generic;
using System.Reflection;
using dot10.DotNet;
using dnlib.DotNet;
using de4dot.blocks;
namespace AssemblyData.methodsrewriter {

View File

@ -21,4 +21,4 @@
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
</LICENSE>
Official site: https://bitbucket.org/0xd4d/dot10
Official site: https://bitbucket.org/0xd4d/dnlib

View File

@ -19,7 +19,7 @@
using System;
using System.Collections.Generic;
using dot10.DotNet.Emit;
using dnlib.DotNet.Emit;
namespace de4dot.blocks {
public class Block : BaseBlock {

View File

@ -19,8 +19,8 @@
using System;
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
namespace de4dot.blocks {
public class Blocks {

View File

@ -19,8 +19,8 @@
using System;
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
namespace de4dot.blocks {
class CodeGenerator {

View File

@ -19,8 +19,8 @@
using System;
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
namespace de4dot.blocks {
public enum FrameworkType {

View File

@ -19,8 +19,8 @@
using System;
using System.Collections.Generic;
using dot10.DotNet.MD;
using dot10.DotNet;
using dnlib.DotNet.MD;
using dnlib.DotNet;
namespace de4dot.blocks {
[Serializable]

View File

@ -23,7 +23,7 @@ using System.Collections.Generic;
namespace de4dot.blocks {
// This class makes sure that each block that is entered with a non-empty stack has at
// least one of its source blocks sorted before itself. This is to make sure peverify
// doesn't complain AND also to make sure dot10 sets the correct maxstack.
// doesn't complain AND also to make sure dnlib sets the correct maxstack.
class ForwardScanOrder {
ScopeBlock scopeBlock;
IList<BaseBlock> sorted;

View File

@ -18,7 +18,7 @@
*/
using System.Collections.Generic;
using dot10.DotNet;
using dnlib.DotNet;
namespace de4dot.blocks {
public struct GenericArgsSubstitutor {

View File

@ -19,7 +19,7 @@
using System;
using System.Collections.Generic;
using dot10.DotNet.Emit;
using dnlib.DotNet.Emit;
namespace de4dot.blocks {
public class Instr {

View File

@ -19,7 +19,7 @@
using System;
using System.Collections.Generic;
using dot10.DotNet.Emit;
using dnlib.DotNet.Emit;
namespace de4dot.blocks {
class InstructionListParser {

View File

@ -19,7 +19,7 @@
using System;
using System.Collections.Generic;
using dot10.DotNet;
using dnlib.DotNet;
namespace de4dot.blocks {
public class TypeDefDict<TValue> {

View File

@ -21,7 +21,7 @@ using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("blocks")]
[assembly: AssemblyDescription("Modifies dot10 MethodDef bodies")]
[assembly: AssemblyDescription("Modifies dnlib MethodDef bodies")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("blocks")]

View File

@ -19,7 +19,7 @@
using System;
using System.Collections.Generic;
using dot10.DotNet.Emit;
using dnlib.DotNet.Emit;
namespace de4dot.blocks {
// A normal branch may not transfer out of a protected block (try block), filter handler,

View File

@ -17,8 +17,8 @@
along with de4dot. If not, see <http://www.gnu.org/licenses/>.
*/
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
namespace de4dot.blocks {
// Contains the filter handler block and the catch handler block.

View File

@ -80,9 +80,9 @@
<Compile Include="Utils.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\dot10\src\dot10.csproj">
<ProjectReference Include="..\dnlib\src\dnlib.csproj">
<Project>{FDFC1237-143F-4919-8318-4926901F4639}</Project>
<Name>dot10</Name>
<Name>dnlib</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>

View File

@ -18,7 +18,7 @@
*/
using System;
using dot10.DotNet.Emit;
using dnlib.DotNet.Emit;
namespace de4dot.blocks.cflow {
class BlockCflowDeobfuscator : BlockDeobfuscator, IBranchHandler {

View File

@ -18,7 +18,7 @@
*/
using System.Collections.Generic;
using dot10.DotNet.Emit;
using dnlib.DotNet.Emit;
namespace de4dot.blocks.cflow {
public class BlocksCflowDeobfuscator {

View File

@ -17,7 +17,7 @@
along with de4dot. If not, see <http://www.gnu.org/licenses/>.
*/
using dot10.DotNet.Emit;
using dnlib.DotNet.Emit;
namespace de4dot.blocks.cflow {
public interface IBranchHandler {

View File

@ -18,8 +18,8 @@
*/
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
namespace de4dot.blocks.cflow {
// Only deobfuscates a method once. A copy of the method (now deobfuscated) is returned.

View File

@ -18,8 +18,8 @@
*/
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
namespace de4dot.blocks.cflow {
public class CflowDeobfuscator : ICflowDeobfuscator {

View File

@ -19,8 +19,8 @@
using System;
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.blocks.cflow {

View File

@ -18,7 +18,7 @@
*/
using System.Collections.Generic;
using dot10.DotNet.Emit;
using dnlib.DotNet.Emit;
namespace de4dot.blocks.cflow {
// Removes dead code that is the result of one of our optimizations, or created by the

View File

@ -19,7 +19,7 @@
using System;
using System.Collections.Generic;
using dot10.DotNet.Emit;
using dnlib.DotNet.Emit;
namespace de4dot.blocks.cflow {
// Removes dead stores by replacing the stloc with a pop. Other optimizations will notice it's

View File

@ -17,7 +17,7 @@
along with de4dot. If not, see <http://www.gnu.org/licenses/>.
*/
using dot10.DotNet;
using dnlib.DotNet;
namespace de4dot.blocks.cflow {
public interface ICflowDeobfuscator {

View File

@ -19,8 +19,8 @@
using System;
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
namespace de4dot.blocks.cflow {
public class InstructionEmulator {

View File

@ -18,8 +18,8 @@
*/
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
namespace de4dot.blocks.cflow {
public class MethodCallInliner : MethodCallInlinerBase {

View File

@ -18,8 +18,8 @@
*/
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
namespace de4dot.blocks.cflow {
public abstract class MethodCallInlinerBase : IBlocksDeobfuscator {

View File

@ -18,8 +18,8 @@
*/
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
namespace de4dot.blocks.cflow {
// Replace stloc + ldloc with dup + stloc

View File

@ -19,8 +19,8 @@
using System;
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
namespace de4dot.blocks.cflow {
class SwitchCflowDeobfuscator : BlockDeobfuscator {

View File

@ -17,7 +17,7 @@
along with de4dot. If not, see <http://www.gnu.org/licenses/>.
*/
using dot10.DotNet;
using dnlib.DotNet;
namespace de4dot.code.AssemblyClient {
public interface IAssemblyClientFactory {

View File

@ -20,8 +20,8 @@
using System;
using System.IO;
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Writer;
using dnlib.DotNet;
using dnlib.DotNet.Writer;
using de4dot.blocks;
namespace de4dot.code {

View File

@ -17,7 +17,7 @@
along with de4dot. If not, see <http://www.gnu.org/licenses/>.
*/
using dot10.DotNet;
using dnlib.DotNet;
namespace de4dot.code {
public class TheAssemblyResolver : AssemblyResolver {

View File

@ -19,7 +19,7 @@
using System;
using System.Collections.Generic;
using dot10.DotNet;
using dnlib.DotNet;
using de4dot.blocks;
namespace de4dot.code {

View File

@ -18,10 +18,10 @@
*/
using System.Collections.Generic;
using dot10.PE;
using dot10.DotNet.MD;
using dot10.DotNet.Emit;
using dot10.DotNet;
using dnlib.PE;
using dnlib.DotNet.MD;
using dnlib.DotNet.Emit;
using dnlib.DotNet;
using de4dot.blocks;
namespace de4dot.code {

View File

@ -17,7 +17,7 @@
along with de4dot. If not, see <http://www.gnu.org/licenses/>.
*/
using dot10.DotNet;
using dnlib.DotNet;
namespace de4dot.code {
public interface IDeobfuscatorContext {

View File

@ -20,7 +20,7 @@
using System;
using System.Collections.Generic;
using de4dot.code.deobfuscators;
using dot10.DotNet;
using dnlib.DotNet;
using de4dot.code.renamer;
namespace de4dot.code {

View File

@ -19,7 +19,7 @@
using System;
using System.Collections.Generic;
using dot10.DotNet;
using dnlib.DotNet;
namespace de4dot.code {
public class Logger : ILogger {

View File

@ -19,8 +19,8 @@
using System.Collections.Generic;
using System.Text;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.code {

View File

@ -19,8 +19,8 @@
using System;
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.code {

View File

@ -22,10 +22,10 @@ using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Text;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dot10.DotNet.Writer;
using dot10.PE;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using dnlib.DotNet.Writer;
using dnlib.PE;
using de4dot.code.deobfuscators;
using de4dot.blocks;
using de4dot.blocks.cflow;

View File

@ -19,8 +19,8 @@
using System;
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.code.AssemblyClient;
using de4dot.blocks;

View File

@ -21,8 +21,8 @@ using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using dot10.DotNet;
using dot10.IO;
using dnlib.DotNet;
using dnlib.IO;
namespace de4dot.code {
// These are in .NET 3.5 and later...

View File

@ -340,9 +340,9 @@
<Project>{5C93C5E2-196F-4877-BF65-96FEBFCEFCA1}</Project>
<Name>de4dot.mdecrypt</Name>
</ProjectReference>
<ProjectReference Include="..\dot10\src\dot10.csproj">
<ProjectReference Include="..\dnlib\src\dnlib.csproj">
<Project>{FDFC1237-143F-4919-8318-4926901F4639}</Project>
<Name>dot10</Name>
<Name>dnlib</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

View File

@ -20,7 +20,7 @@
using System;
using System.Collections.Generic;
using System.IO;
using dot10.DotNet;
using dnlib.DotNet;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Agile_NET {

View File

@ -19,9 +19,9 @@
using System;
using System.Collections.Generic;
using dot10.IO;
using dot10.PE;
using dot10.DotNet;
using dnlib.IO;
using dnlib.PE;
using dnlib.DotNet;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Agile_NET {

View File

@ -20,10 +20,10 @@
using System;
using System.Collections.Generic;
using System.IO;
using dot10.IO;
using dot10.PE;
using dot10.DotNet;
using dot10.DotNet.MD;
using dnlib.IO;
using dnlib.PE;
using dnlib.DotNet;
using dnlib.DotNet.MD;
using de4dot.blocks;
using de4dot.code.AssemblyClient;

View File

@ -19,8 +19,8 @@
using System;
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Agile_NET {

View File

@ -20,8 +20,8 @@
using System.IO;
using System.Security.Cryptography;
using System.Text;
using dot10.IO;
using dot10.DotNet;
using dnlib.IO;
using dnlib.DotNet;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Agile_NET {

View File

@ -18,7 +18,7 @@
*/
using System;
using dot10.DotNet;
using dnlib.DotNet;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Agile_NET {

View File

@ -19,7 +19,7 @@
using System;
using System.Text;
using dot10.DotNet;
using dnlib.DotNet;
namespace de4dot.code.deobfuscators.Agile_NET {
class StringDecrypter {

View File

@ -17,8 +17,8 @@
along with de4dot. If not, see <http://www.gnu.org/licenses/>.
*/
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Agile_NET.vm {

View File

@ -20,7 +20,7 @@
using System;
using System.Collections.Generic;
using System.IO;
using dot10.DotNet;
using dnlib.DotNet;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Agile_NET.vm {

View File

@ -20,8 +20,8 @@
using System;
using System.Collections.Generic;
using System.IO;
using dot10.IO;
using dot10.DotNet;
using dnlib.IO;
using dnlib.DotNet;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Agile_NET.vm {

View File

@ -20,8 +20,8 @@
using System;
using System.Collections.Generic;
using System.IO;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Agile_NET.vm {

View File

@ -19,7 +19,7 @@
using System;
using System.Collections.Generic;
using dot10.DotNet;
using dnlib.DotNet;
namespace de4dot.code.deobfuscators.Agile_NET.vm {
class FieldsInfo {

View File

@ -21,8 +21,8 @@ using System;
using System.Collections.Generic;
using System.IO;
using de4dot.blocks;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
namespace de4dot.code.deobfuscators.Agile_NET.vm {
partial class OpCodeHandler {

View File

@ -19,8 +19,8 @@
using System;
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Agile_NET.vm {

View File

@ -19,8 +19,8 @@
using System;
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
using de4dot.blocks.cflow;

View File

@ -18,8 +18,8 @@
*/
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
using de4dot.blocks.cflow;

View File

@ -19,8 +19,8 @@
using System;
using System.IO;
using dot10.IO;
using dot10.DotNet;
using dnlib.IO;
using dnlib.DotNet;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Babel_NET {

View File

@ -18,8 +18,8 @@
*/
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
using de4dot.blocks.cflow;

View File

@ -19,8 +19,8 @@
using System.Collections.Generic;
using System.Text;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Babel_NET {

View File

@ -21,9 +21,9 @@ using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
using dot10.IO;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.IO;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Babel_NET {

View File

@ -19,7 +19,7 @@
using System.Collections.Generic;
using System.Text.RegularExpressions;
using dot10.DotNet;
using dnlib.DotNet;
using de4dot.blocks;
using de4dot.blocks.cflow;

View File

@ -22,13 +22,13 @@ using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.IO;
using System.Text;
using dot10.IO;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.IO;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
using CR = System.Runtime.InteropServices;
using DR = dot10.DotNet;
using DR = dnlib.DotNet;
namespace de4dot.code.deobfuscators.Babel_NET {
class ImageReader {

View File

@ -18,8 +18,8 @@
*/
using ICSharpCode.SharpZipLib.Zip.Compression;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Babel_NET {

View File

@ -18,7 +18,7 @@
*/
using System;
using dot10.DotNet;
using dnlib.DotNet;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Babel_NET {

View File

@ -20,9 +20,9 @@
using System;
using System.Collections.Generic;
using System.IO;
using dot10.IO;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.IO;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
namespace de4dot.code.deobfuscators.Babel_NET {
class MethodBodyReader : MethodBodyReaderBase {

View File

@ -20,9 +20,9 @@
using System;
using System.Collections.Generic;
using System.IO;
using dot10.IO;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.IO;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
namespace de4dot.code.deobfuscators.Babel_NET {
class BabelMethodreference {

View File

@ -20,9 +20,9 @@
using System;
using System.Collections.Generic;
using System.IO;
using dot10.IO;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.IO;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Babel_NET {

View File

@ -19,8 +19,8 @@
using System;
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Babel_NET {

View File

@ -20,8 +20,8 @@
using System;
using System.IO;
using ICSharpCode.SharpZipLib.Zip.Compression;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Babel_NET {

View File

@ -20,9 +20,9 @@
using System;
using System.Collections.Generic;
using System.IO;
using dot10.IO;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.IO;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.Babel_NET {

View File

@ -21,9 +21,9 @@ using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using dot10.IO;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.IO;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
using de4dot.blocks.cflow;

View File

@ -23,9 +23,9 @@ using System.IO;
using System.Security.Cryptography;
using System.Text;
using System.Text.RegularExpressions;
using dot10.IO;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.IO;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.CodeFort {

View File

@ -17,7 +17,7 @@
along with de4dot. If not, see <http://www.gnu.org/licenses/>.
*/
using dot10.DotNet;
using dnlib.DotNet;
using de4dot.blocks;
using de4dot.blocks.cflow;

View File

@ -19,7 +19,7 @@
using System;
using System.Collections.Generic;
using dot10.DotNet;
using dnlib.DotNet;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.CodeFort {

View File

@ -22,7 +22,7 @@ using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Reflection.Emit;
using dot10.DotNet;
using dnlib.DotNet;
namespace de4dot.code.deobfuscators.CodeFort {
class PasswordInfo {

View File

@ -19,8 +19,8 @@
using System;
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.CodeFort {

View File

@ -18,8 +18,8 @@
*/
using System.Text;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.CodeFort {

View File

@ -20,9 +20,9 @@
using System.Collections.Generic;
using System.IO;
using System.Xml;
using dot10.IO;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.IO;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.CodeVeil {

View File

@ -19,7 +19,7 @@
using System;
using System.Collections.Generic;
using dot10.DotNet;
using dnlib.DotNet;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.CodeVeil {

View File

@ -19,7 +19,7 @@
using System;
using System.IO;
using dot10.IO;
using dnlib.IO;
namespace de4dot.code.deobfuscators.CodeVeil {
class ErexResourceReader {

View File

@ -18,7 +18,7 @@
*/
using System.Collections.Generic;
using dot10.DotNet;
using dnlib.DotNet;
namespace de4dot.code.deobfuscators.CodeVeil {
class InvalidMethodsFinder {

View File

@ -18,8 +18,8 @@
*/
using System.Collections.Generic;
using dot10.DotNet;
using dot10.DotNet.Emit;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.code.deobfuscators.CodeVeil {

Some files were not shown because too many files have changed in this diff Show More