What is the general approach to implement the serial number and activation protection for Java Application? [closed]
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this questionI want to create a Java Desktop Application and want to employ some mechanism to protect my software from illegal copy. What is the general best approach to implement the serial number and activation protection for Java Application? If the user can activate the software correctly, where to store the activation info?
Thanks.
There can almost be only one answer: On your server, together with a significant part of your algorithm(s). If all the code has to be on the client, then all that could work is
- Trusted computing (ultimately a hardware barrier)
- Steganography (obfuscating, scattering, hiding, deceiving, ...)
精彩评论