public static void Main()
string resultado = string.Empty;
resultado = Crypter.Blowfish.Crypt("cadena", new CrypterOptions {
{CrypterOption.Variant, BlowfishCrypterVariant.Corrected },
{CrypterOption.Rounds, 6 }
Console.WriteLine("resultado: {0}", resultado);