CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Nov 2003
    Posts
    34

    Looking for info on user authentication

    Hi,

    I've just completed my first major application, and I've got some people interested in buying it (or should I say interested in paying for the rights to use it).

    What I'm curious about is the best method to set it up so that these paying users will be authenticated. Should I set it up to require a serial number or some similar method? If so, how do I implement it? Are there other options?

    Currently, I have a quick fix in place that allows use for a set period of time (ie: 30 days) after which the app just won't run, but this is hardly a permanent solution.

    I'd welcome anyone's suggestions on the subject.

    Thanks.

  2. #2
    Andy Tacker is offline More than "Just Another Member"
    Join Date
    Jun 2001
    Location
    55°50' N 37°39' E
    Posts
    1,503
    should not be a big deal, if you are using db.
    look for encryption and similar stuff for securing user authentication.
    If you think you CAN, you can, If you think you CAN'T, you are probably right.

    Have some nice Idea to share? Write an Article Online or Email to us and You may WIN a Technical Book from CG.

  3. #3
    Join Date
    Mar 2002
    Location
    St. Petersburg, Florida, USA
    Posts
    12,125
    CLR based applications post some interesting issues in trying to secure them from un-authorized duplication [note: this is NOT User Authentication, but rather Software Licensing].

    If you are looking to make it really difficult [nothing can make it impossible], I strongly suggest using a professional package intended for this purpose.

    Most "home-grown" solutions can be cracked in less than an hour.
    TheCPUWizard is a registered trademark, all rights reserved. (If this post was helpful, please RATE it!)
    2008, 2009,2010
    In theory, there is no difference between theory and practice; in practice there is.

    * Join the fight, refuse to respond to posts that contain code outside of [code] ... [/code] tags. See here for instructions
    * How NOT to post a question here
    * Of course you read this carefully before you posted
    * Need homework help? Read this first

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured