An Implementation of ASP.NET Core Identity IPasswordValidator that verifies the provided password has not been pwned, as defined by Troy Hunt's HaveIBeenPwned service: https://haveibeenpwned.com/Passwords
A simple client to use v2 of the Pwned Password service provided by Troy Hunt of https://haveibeenpwned.com. No passwords are sent to the service using v2, instead just the first 5 characters are used to adhere to a k-Anonymity model.
This library provides an IPasswordValidator for Microsoft ASP.NET Core Identity which validates passwords against HaveIBeenPwned.com's Pwned Passwords using the v2 RESTful API.