public HuffmanMD5Encryption(uint seed)
        {
            // Twofish table is required for MD5 table creation.
            TwofishEncryption two;
            two = new TwofishEncryption(seed);

            md5 = new MD5(two.Object.subData3);
            huff = new Huffman();
        }
Example #2
0
        public HuffmanMD5Encryption(uint seed)
        {
            // Twofish table is required for MD5 table creation.
            TwofishEncryption two;

            two = new TwofishEncryption(seed);

            md5  = new MD5(two.Object.subData3);
            huff = new Huffman();
        }
Example #3
0
 public BlowfishTwofishEncryption(uint seed)
 {
     blow = new BlowfishEncryption();
     two  = new TwofishEncryption(seed);
 }
 public BlowfishTwofishEncryption(uint seed)
 {
     blow = new BlowfishEncryption();
     two = new TwofishEncryption(seed);
 }