using System;
using Microsoft.AspNetCore.Identity;
public class Toto
{
public string Tutu {get;set;}
}
public class Program
public static void Main()
var hasher = new PasswordHasher<Toto>();
string password = hasher.HashPassword(null, "Supplier1Pwd");
Console.WriteLine(password);