Your having enough of crackers, reverse engineers ? With LiteCode you can host your code remotely at a server where no cracker can touch it
Your source code will become even more private then ever with more protection and no source code obfuscation required
The dummy class in the client is being used to inject code but that's not important
The most important part here is that the server contains all the sensitive information and the client does not
Your source code will become even more private then ever with more protection and no source code obfuscation required
Features
- Using the SSP protocol for having a scalable server and having the traffic Encrypted/Compressed http://ssp.codeplex.com/
- Host your code where no cracker can ever touch it to get your software cracked
- You don't need a lot of knowledge about networking how to send packets and such thats all being done in the background
- Shared Classes is a new technique to remotely call methods in the client or server to make it easy for the end-user to understand what is going on in the code
- Overloaded methods
- Shared Classes
- System classes (underconstruction) currently there is, Graphics, Cursor
- Delegates (callback methods)
Underconstruction
- "out" keyword
- "param" keyword
Code example of a shared class - Server Sided
class TestClass : ITest { privatestring Password; public TestClass() { this.Password = "VerySecretPassword"; } [RemoteExecution] publicstring CallMe() { return"Hello World"; } }
Code example of a shared class - Client Sided (Dummy Class)
class TestClass : ITest { public TestClass() { } [RemoteExecution] publicstring CallMe() { return""; } }
The dummy class in the client is being used to inject code but that's not important
The most important part here is that the server contains all the sensitive information and the client does not