Kent Belan wrote:
> Hello Henry,
> I do the same thing now, I create a key with the user name and address
> And email them the key in a MEM file. That is where my problems begin.
> 
> The users are having a problem saving the MEM file to a specific location
> On there computer and some people just can't do it. What a hassle.
> 
> I am looking for a better way to deliver the key, so when I email the key
> They can type it into a registration form and turn the program on.
> 
> I need to change my key to only be alpha numeric characters. Currently my
> Key generates any ascii character, so I have to change that first.
> 
> Thanks,
> Kent
> 
>> I use keys that include the client's name. This way, the keys 
>> 'brand' the software for the one client and are useless to 
>> pass around. 
>>
>> Henry


I have the client's name in my LOADER.INI file, and then I also pass a 
separate file called license.txt that is the encrypted string of that 
client name.  I use cipher50.fll for cheap/easy encryption, so I can 
basically do something like this:

lcClient = GetKeyFromINI()
set library to cipher50.fll
lcEncrypted = encrypt(filetostr("license.txt"),"mydecryptionkey")
if lcEncrypted = lcClient then
   * proceed
else
   * don't allow access
endif


That's off the top of my head so I might be off slightly in syntax.  I 
could work in date information if I wanted some consideration for timed 
licenses.


hth,
--Michael


_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/[EMAIL PROTECTED]
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to