C
Christoph Wienands
Hi everybody,
..Net doc states about the Assembly.Load(byte[] rawAssembly, byte[]
rawSymbolStore) function:
-----------------------
Loads the assembly with a Common Object File Format (COFF)-based image
containing an emitted assembly.
rawAssembly
An array of type byte that is a COFF-based image containing an emitted
assembly.
rawSymbolStore
An array of type byte containing the raw bytes representing the symbols for
the assembly.
-----------------------
I'm currently trying to implement some code security that will make it
harder for "hackers" to decompile the essential algorithms in my app. The
idea is to load an assembly image from an encrypted file or so during
runtime. Can anyone tell me how I can retrieve such an image from an
existing DLL?
Thanks, Christoph
..Net doc states about the Assembly.Load(byte[] rawAssembly, byte[]
rawSymbolStore) function:
-----------------------
Loads the assembly with a Common Object File Format (COFF)-based image
containing an emitted assembly.
rawAssembly
An array of type byte that is a COFF-based image containing an emitted
assembly.
rawSymbolStore
An array of type byte containing the raw bytes representing the symbols for
the assembly.
-----------------------
I'm currently trying to implement some code security that will make it
harder for "hackers" to decompile the essential algorithms in my app. The
idea is to load an assembly image from an encrypted file or so during
runtime. Can anyone tell me how I can retrieve such an image from an
existing DLL?
Thanks, Christoph