public static void Main()
Console.WriteLine("Hello World");
string password = "abc#123";
string author = "abcd#1234";
byte[] bytes = System.Text.Encoding.ASCII.GetBytes(author);
string author2 = "abc#123";
byte[] bytes2 = System.Text.Encoding.ASCII.GetBytes(author);
if (BCrypt.Net.BCrypt.Verify(password, "$2y$10$UkWDSYixagcWEn1OpHnvYeAI/5Rvg0DFh7QQMmqpedvJ9lcC4O3OC"))
Console.WriteLine(" \n \r Match hashed Mangooooooooooo" );