Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

.NET Obfuscation and Intellectual Property


August 2002/.NET Obfuscation and Intellectual Property

Example 1: IL Disassembly of GetNewName

method private hidebysig instance string 
        GetNewString(string currentString,
                     int32 requiredLength) cil managed
{
  // Code size       94 (0x5e)
  .maxstack  3
  .locals (int32 V_0)
  IL_0000:  ldarg.2
  IL_0001:  ldc.i4.1
  IL_0002:  add
  IL_0003:  starg.s    requiredLength
  IL_0005:  ldarg.2
  IL_0006:  ldarg.0
  IL_0007:  ldfld      int32 System.Text.StringBuilder::m_MaxCapacity
  IL_000c:  ble.s      IL_0023
  IL_000e:  ldstr      "ArgumentOutOfRange_NegativeCapacity"
  IL_0013:  call       string System.Environment::GetResourceString (string)
  IL_0018:  ldstr      "requiredLength"
  IL_001d:  newobj     instance void System.ArgumentOutOfRangeException::.ctor(string,
                                                                               string)
  IL_0022:  throw
  IL_0023:  ldarg.1
  IL_0024:  callvirt   instance int32 System.String::get_Capacity()
  IL_0029:  ldc.i4.2
  IL_002a:  mul
  IL_002b:  stloc.0
  IL_002c:  ldloc.0
  IL_002d:  ldarg.2
  IL_002e:  bge.s      IL_0032
  IL_0030:  ldarg.2
  IL_0031:  stloc.0
  IL_0032:  ldloc.0
  IL_0033:  ldarg.0
  IL_0034:  ldfld      int32 System.Text.StringBuilder::m_MaxCapacity
  IL_0039:  ble.s      IL_0042
  IL_003b:  ldarg.0
  IL_003c:  ldfld      int32 System.Text.StringBuilder::m_MaxCapacity
  IL_0041:  stloc.0
  IL_0042:  ldloc.0
  IL_0043:  ldc.i4.0
  IL_0044:  bgt.s      IL_0056
  IL_0046:  ldstr      "ArgumentOutOfRange_NegativeCapacity"
  IL_004b:  call       string System.Environment::GetResourceString(string)
  IL_0050:  newobj     instance void System.ArgumentOutOfRangeException::.ctor(string)
  IL_0055:  throw
  IL_0056:  ldarg.1
  IL_0057:  ldloc.0
  IL_0058:  call       string System.String::GetStringForStringBuilder(string,
                                                                       int32)
  IL_005d:  ret
} // end of method StringBuilder::GetNewString


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.