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(); }