using System.Security.Cryptography;
private static void Main()
var source = "MasoudHosseiniTestxxxxxxxxxxxxxxxxxxxxxxxxTest";
var hashids = new Hashids(source);
var hash = hashids.EncodeHex("09194101045");
var hash1 = hashids.DecodeHex(hash);
Console.WriteLine(hash1);