• Home
  • Raw
  • Download

Lines Matching full:checksum

23         /// The value of the current checksum
28 /// Initializes a new instance of the checksum generator base - the current checksum is
37 /// Initializes a new instance of the checksum generator basewith a specified value
39 /// <param name="initialValue">The value to set the current checksum to</param>
46 /// Resets the current checksum to zero
51 /// Gets the current checksum value
56 /// Updates the current checksum with part of an array of bytes
58 /// <param name="data">The data to update the checksum with</param>
69 /// Updates the current checksum with an array of bytes.
71 /// <param name="data">The data to update the checksum with</param>
78 /// Updates the current checksum with the data from a string
80 /// <param name="data">The string to update the checksum with</param>
88 /// Updates the current checksum with the data from a string, using a specific encoding
90 /// <param name="data">The string to update the checksum with</param>
102 /// Implements a CRC32 checksum generator
114 /// Initializes a new instance of the CRC32 checksum generator
119 /// Initializes a new instance of the CRC32 checksum generator with a specified value
121 /// <param name="initialValue">The value to set the current checksum to</param>
125 /// Updates the current checksum with part of an array of bytes
127 /// <param name="data">The data to update the checksum with</param>
153 /// Implements a checksum generator that computes the Adler checksum on data
165 /// Initializes a new instance of the Adler checksum generator
170 /// Initializes a new instance of the Adler checksum generator with a specified value
172 /// <param name="initialValue">The value to set the current checksum to</param>
176 /// Updates the current checksum with part of an array of bytes
178 /// <param name="data">The data to update the checksum with</param>