Exemplo n.º 1
0
        // InitializationVector for 3DES.
        public static Byte[] CalculateIV(UInt32 Seed)
        {
            HashAlgorithm hash = new Tiger();

            return(hash.ComputeHash(BitConverter.GetBytes(Seed)));
        }