diff options
Diffstat (limited to 'contrib/dotzlib/DotZLib/ChecksumImpl.cs')
-rw-r--r-- | contrib/dotzlib/DotZLib/ChecksumImpl.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/dotzlib/DotZLib/ChecksumImpl.cs b/contrib/dotzlib/DotZLib/ChecksumImpl.cs index dfe7e90..788b2fc 100644 --- a/contrib/dotzlib/DotZLib/ChecksumImpl.cs +++ b/contrib/dotzlib/DotZLib/ChecksumImpl.cs | |||
@@ -1,7 +1,7 @@ | |||
1 | // | 1 | // |
2 | // © Copyright Henrik Ravn 2004 | 2 | // © Copyright Henrik Ravn 2004 |
3 | // | 3 | // |
4 | // Use, modification and distribution are subject to the Boost Software License, Version 1.0. | 4 | // Use, modification and distribution are subject to the Boost Software License, Version 1.0. |
5 | // (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | 5 | // (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
6 | // | 6 | // |
7 | 7 | ||
@@ -25,7 +25,7 @@ namespace DotZLib | |||
25 | protected uint _current; | 25 | protected uint _current; |
26 | 26 | ||
27 | /// <summary> | 27 | /// <summary> |
28 | /// Initializes a new instance of the checksum generator base - the current checksum is | 28 | /// Initializes a new instance of the checksum generator base - the current checksum is |
29 | /// set to zero | 29 | /// set to zero |
30 | /// </summary> | 30 | /// </summary> |
31 | public ChecksumGeneratorBase() | 31 | public ChecksumGeneratorBase() |
@@ -61,7 +61,7 @@ namespace DotZLib | |||
61 | /// <exception cref="ArgumentException">The sum of offset and count is larger than the length of <c>data</c></exception> | 61 | /// <exception cref="ArgumentException">The sum of offset and count is larger than the length of <c>data</c></exception> |
62 | /// <exception cref="NullReferenceException"><c>data</c> is a null reference</exception> | 62 | /// <exception cref="NullReferenceException"><c>data</c> is a null reference</exception> |
63 | /// <exception cref="ArgumentOutOfRangeException">Offset or count is negative.</exception> | 63 | /// <exception cref="ArgumentOutOfRangeException">Offset or count is negative.</exception> |
64 | /// <remarks>All the other <c>Update</c> methods are implmeneted in terms of this one. | 64 | /// <remarks>All the other <c>Update</c> methods are implmeneted in terms of this one. |
65 | /// This is therefore the only method a derived class has to implement</remarks> | 65 | /// This is therefore the only method a derived class has to implement</remarks> |
66 | public abstract void Update(byte[] data, int offset, int count); | 66 | public abstract void Update(byte[] data, int offset, int count); |
67 | 67 | ||
@@ -101,7 +101,7 @@ namespace DotZLib | |||
101 | /// <summary> | 101 | /// <summary> |
102 | /// Implements a CRC32 checksum generator | 102 | /// Implements a CRC32 checksum generator |
103 | /// </summary> | 103 | /// </summary> |
104 | public sealed class CRC32Checksum : ChecksumGeneratorBase | 104 | public sealed class CRC32Checksum : ChecksumGeneratorBase |
105 | { | 105 | { |
106 | #region DLL imports | 106 | #region DLL imports |
107 | 107 | ||
@@ -152,7 +152,7 @@ namespace DotZLib | |||
152 | /// <summary> | 152 | /// <summary> |
153 | /// Implements a checksum generator that computes the Adler checksum on data | 153 | /// Implements a checksum generator that computes the Adler checksum on data |
154 | /// </summary> | 154 | /// </summary> |
155 | public sealed class AdlerChecksum : ChecksumGeneratorBase | 155 | public sealed class AdlerChecksum : ChecksumGeneratorBase |
156 | { | 156 | { |
157 | #region DLL imports | 157 | #region DLL imports |
158 | 158 | ||