Add missing XML documentation.

This commit is contained in:
2020-07-20 05:57:36 +01:00
parent a0781c3792
commit c6f338a35f
3 changed files with 10 additions and 0 deletions

View File

@@ -141,6 +141,8 @@ namespace Aaru.Checksums
/// <summary>Gets the hash of a file in hexadecimal and as a byte array.</summary>
/// <param name="filename">File path.</param>
/// <param name="hash">Byte array of the hash value.</param>
/// <param name="polynomial">CRC polynomial</param>
/// <param name="seed">CRC seed</param>
public static string File(string filename, out byte[] hash, uint polynomial, uint seed)
{
var fileStream = new FileStream(filename, FileMode.Open);