Пример #1
0
        /// <summary>
        /// Computes SHA256 of the file
        /// </summary>
        /// <returns>The human readable SHA256 checksum of the file</returns>
        public string sha256()
        {
            Hash h = new HashSHA256(task);

            return(h.digest(filename));
        }