.NET Reactor

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Paul Aspinall

    .NET Reactor

    Hi
    Has anyone any experiences of using .NET Reactor, in order to protect their
    assemblies??

    .NET Code Protection & Licensing - Code/String/Resource Encryption, License Manager, Obfuscation, Merging, Control Flow Obfuscation and much more.


    Any opinions / experiences appreciated.

    Thanks


  • Boni

    #2
    Re: .NET Reactor

    Hi Paul,
    I had pretty much hope to use the tool to protect my component. I tried the
    eval. But it showd to be very unrelible on my application.Oft en and
    unpredictable it was "bad reference" error at the start time.
    I would be a great tool and would save much trouble if it would work as
    expected.
    By the way, I still don't understand why Microsoft has no native compiler,
    which could work without assembly.

    "Paul Aspinall" <paul@aspy.co.u k> schrieb im Newsbeitrag
    news:rFX4e.4663 5$Nr5.19135@fe2 .news.blueyonde r.co.uk...[color=blue]
    > Hi
    > Has anyone any experiences of using .NET Reactor, in order to protect
    > their assemblies??
    >
    > http://www.eziriz.com/
    >
    > Any opinions / experiences appreciated.
    >
    > Thanks
    >[/color]


    Comment

    • Sean Hederman

      #3
      Re: .NET Reactor

      "Boni" <oilia@nospam > wrote in message
      news:eYrULpuOFH A.1996@TK2MSFTN GP10.phx.gbl...
      [Snip][color=blue]
      > By the way, I still don't understand why Microsoft has no native compiler,
      > which could work without assembly.[/color]

      I assume you mean a .NET native compiler? NGEN allows you to precompile
      assemblies to native code, but there are no guarantees that the native code
      will be used and it may be recompiled by the JIT. In addition it still keeps
      the assembly IL and metadata with it. As for why a pure native code solution
      isn't included in .NET, there's a couple:
      - JIT allows the compile to be optimized for the machine on which it is
      running rather than the developers machine.
      - Pure native code would be able to bypass the CAS and verification.


      Comment

      Working...