Hi,
in a previous project (web form) i have implemented a very simple authentification system .
in my database i have only usernames,
when a user try to login , he/she provide his username and his password
then a new pass is calculated on the fly based on entered username and some logic
if the entred password match with the calculated one he/she is granted to use the application
then i create a session variable with the username to check if a user is logged or not.
well it worked , but now i have a new project (mvc) with the same requirement (my own sql database containing names wich the login system have to be based on),
and i am wondering if i can benefit from this new asp.net MVC5 authentification system , since i have never used before
any ideas/suggestion on how to use this new identity authentification system based on my scenario ?
thanks and good day