using System;
using Microsoft.AspNetCore.Identity;
public class Program
{
public static void Main()
Console.WriteLine("Hello!");
var ph = new PasswordHasher<IdentityUser>();
var hash = ph.HashPassword(new IdentityUser(), "");
Console.WriteLine("Hash is " + hash);
}