// InitializationVector for 3DES. public static Byte[] CalculateIV(UInt32 Seed) { HashAlgorithm hash = new Tiger(); return(hash.ComputeHash(BitConverter.GetBytes(Seed))); }