Beispiel #1
0
        void BtFEncipherClick(object sender, EventArgs e)
        {
            string fi = txFIn.Text;
            string fo = txFOut.Text;

            byte[] key = GetBytes(txFKey.Text);
            Blowfish bl = new Blowfish(this);
            bl.InitBoxes(key);
            bl.Encipher(fi, fo);
        }