Esempio n. 1
0
        public static byte[] CalculateInitialVector(uint initialValue)
        {
            var thash = new TigerHash();
            var hash  = thash.ComputeHash(BitConverter.GetBytes(initialValue));

            thash.Clear();

            return(hash);
        }