i have already created database on mvc website which i authenticate user login data (username and password) using asp.net identity owin , you know the password is hashed in the database , now i have windows application and this application users wants to authenticate with the same existing table Aspusers in the database , how can i authenticate with the hashed password as i cant use applicationsigninmanager or such controllers in my windows app , i tried to implement UserManager and the other user application criteria implemented in mvc but i couldnot manage to do it
P.S i see my problem is i couldnot find a mechanism that windows form app can use to authenticate(hashed) or register(hashed) password in Aspnetusers table