[RESOLVED] [2008] Making a registration system
Well, see, I need to create a key based registration system, like most of these top name programs use.
It doesn't need to be strong, cause I will obsfuctuate (if that's how its spelt) the program.
But, I need a generator to make the keys based off of the username, and inside my program, a way to verify what was created.
Any ideas?
Re: [2008] Making a registration system
Go search in the codebank. There is a License class that someone has created which I use a lot. Because just like you I just need a hint of security.
To create your keys use something unique to the hardware. Use the processor ID, or the harddrive serial number and create a key out of that.
Re: [2008] Making a registration system
Thanks, I will
EDIT: made it work for what I need, thanks a lot guys!