Secure Password Storing for desktop software

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • wynnt3o
    New Member
    • Aug 2012
    • 4

    Secure Password Storing for desktop software

    I was thinking to create a desktop application, and this app required user login with username and password, since the app not connect with database, I was thinking is there a secure way to store password? One of the way come into my mind is storing in registry?
  • ariful alam
    New Member
    • Jan 2011
    • 185

    #2
    You can do this what you thought.

    you can also use a configuration file that may store user id and password in encrypt format like in binary, hex, decimal etc.

    Comment

    • wynnt3o
      New Member
      • Aug 2012
      • 4

      #3
      Originally posted by ariful alam
      You can do this what you thought.

      you can also use a configuration file that may store user id and password in encrypt format like in binary, hex, decimal etc.
      If storing in file will it be unsecure?

      Comment

      • ariful alam
        New Member
        • Jan 2011
        • 185

        #4
        As I said, in file in encrypt format. not as a simple text but as binary, hex, decimal or other technique. moreover you can name the extension of the file to a unknown format whatever u like.

        Comment

        • Rabbit
          Recognized Expert MVP
          • Jan 2007
          • 12517

          #5
          First of all, there's no such thing as 100% secure. And in this scenario, it's not a matter of where you store it but how you store it. The usual method for this is to hash the password and store the hash. A slightly more secure method is to hash it with a salt.

          Comment

          • wynnt3o
            New Member
            • Aug 2012
            • 4

            #6
            Originally posted by Rabbit
            First of all, there's no such thing as 100% secure. And in this scenario, it's not a matter of where you store it but how you store it. The usual method for this is to hash the password and store the hash. A slightly more secure method is to hash it with a salt.
            Yes I understad I just want to listen more suggestion and opinion which method will be more secure. Thanks for your advised.

            Comment

            Working...