I need to code a program in which: Asks for an email adress and password, Searches a csv file for the email adress (Just call the csv file x), If the password is correct it displays the customer details, It displays a error message if the password is incorrect.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
closed as not a real question by Zenith, Christian Kuetbach, Shashank Kadne, Marko Topolnik, SJuan76 Nov 20 '12 at 9:30
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
It is insecure to store the plain text password in a CSV file where at least system administrator can easily see it. Use the security grade one way hashing like SHA or similar, store the hash code in CSV file and compare the hash codes instead. |
|||
|
|