Obfuscation for Unity Game Engine
Eazfuscator.NET 4.1 brings official support for Unity applications. This is the great addition since Unity got a lot of traction during recent years.
Eazfuscator.NET 4.1 brings official support for Unity applications. This is the great addition since Unity got a lot of traction during recent years.
All recent .NET technologies for User Interface (UI) are based on XAML. WPF, Silverlight, Windows Phone and WinRT use XAML to define elements, events, data binding and other aspects of UI. Some of these technologies are new and inspirational... Sometimes they are tasteless: But still they all are based on…
Windows Presentation Foundation (WPF) technology was officially released on November 6, 2006 as a part of .NET Framework 3.0. During the first 4 years it did not get enough attention from developers due to painful font rendering bug which caused blurry text appearance. Performance was far from the perfect state…
Consider yourself in a situation when you are working on a security-sensitive part of your application’s code. Here is one of your methods:
private static byte[] ComputeLicenseHash(int y)
{
int v = _mySalt ^ y;
var h = new MD5CryptoServiceProvider();
var hash = h.ComputeHash(BitConverter.GetBytes(v));
return hash;
}
Eazfuscator.NET always takes care about the performance of your applications since the very beginning. I often find myself thinking about some exotic code transformation for the sake of better code protection and a few days later I decide to not go into it.
Eazfuscator.NET 3.1 has been released just a few minutes ago, so I’m here to spread some words about it!
This release includes highly demanded features and improvements.