Tagged Questions

1
vote
5answers
186 views

Where does an application store “I’m deactivated” on Windows?

Applications often have registration keys. It can arguably be placed in a file or in the registry. Sometimes, an application is deactivated by entry of another key, or the passing of a date, etc. …
4
votes
5answers
207 views

Would you be OK with this way of verify a license?

I have a XML file describing the name of the company the product is licensed for, the version and some extra information. Looking something like this <Licence> …
2
votes
1answer
80 views

Protecting licensing implementation in C++

What ways are there to protect licensing enforcement mechanisms in C/C++? I know of: Using macros (but that make the code difficult to maintain) Linking statically Obfuscating symbol names Other …