Duplicate hash method for password in .NET
Here is the library: http://www.zer7.com/software/cryptsharp And this is “howtouse”: public override bool ValidateUser(string name, string password) { if (string.IsNullOrWhiteSpace(name)) return false; if (string.IsNullOrWhiteSpace(password)) return false; // this is just fetching the hash from the WP-database using BLToolkit. You can use any other way to get the hash from db 😉 UserData ud = null; using … Read more