Building a custom IUserPasswordStore to connect to an outdated username / password system. The password is hashed using custom code in the table, so I need to write custom code for PasswordSignInAsync .
Do I need to override PasswordSignInAsync or is there a way I can provide that just does password hashing? If I override the whole PasswordSignInAsync , is there a code example somewhere showing me what needs to be done in the method?
Wavel source share