Click here to Skip to main content
15,888,610 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
How can i code my own login that is secured enough for a voting system that will be used by a university?
Posted
Comments
musefan 6-Jul-11 10:58am    
What kind of application are you developing? WinForms? Also, what kind of data store are you using to store user details? (e.g. SQL Database) and the level of security really depends on how much you value the data

1 solution

Not a complete answer, but there are some notes on passwords here: Password Storage: How to do it.[^]
You also want to look at avoiding SQL Injection attacks by making absolutely sure you use Parametrized queries: MSDN can help[^]

Above all, remember that universities are full of <shudder>students</shudder> - possibly the laziest people on the planet, except when it comes to making other people's lives a misery. They will try to destroy your app so you need to be careful to check, check, check and then use exception handling anyway. Oh, and test everything! Three times.
 
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