I'm implementing a user authentication / registration feature with ASP.NET MVC 4.5, but I can not find a more correct way of working with passwords in the database, I do not want to simply generate an MD5 and write to the database .
Is there no default ASP.NET class that allows me to generate a hash or check a password with an existing hash? (Generate / Check), as it exists in PHP frameworks, for example.