Example #1
0
        /// <summary>
        /// Computes md5 of the file
        /// </summary>
        /// <returns>The human readable MD5 checksum of the file</returns>
        public string md5()
        {
            Hash h = new HashMD5(task);

            return(h.digest(filename));
        }