Click here to Skip to main content
15,888,610 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
how do I code password verification into my c# program?
Posted
Comments
[no name] 22-Jul-12 17:01pm    
You get the input from the user and compare their input with the stored password.
db7uk 22-Jul-12 17:02pm    
Please elaborate. This is not a well formed question. What context, what environment, what level of security?, What have you tried?, what is your goal?

1 solution

Do you not know how to do string comparisons in C# ? The only trick I can think of, if the data is in the DB, is to do a query that returns if the password was correct, instead of pulling the password in to memory, but doing this, broadly speaking, is trivial, and if you have a more specific question about it, you should ask it.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900