public static void Main()
Console.WriteLine("Hello!");
var ph = new Microsoft.AspNetCore.Identity.PasswordHasher<User>();
var hash = ph.HashPassword(null, "test");
var isCurrentHashValid = ph.VerifyHashedPassword(null, hash, "test");
Console.WriteLine("Hash is " + hash);
Console.WriteLine("isCurrentHashValid " + isCurrentHashValid);