Lines Matching refs:checksum
27 // Size is the size, in bytes, of a SHA-512 checksum.
30 // Size224 is the size, in bytes, of a SHA-512/224 checksum.
33 // Size256 is the size, in bytes, of a SHA-512/256 checksum.
36 // Size384 is the size, in bytes, of a SHA-384 checksum.
80 // digest represents the partial evaluation of a checksum.
219 // New returns a new hash.Hash computing the SHA-512 checksum.
226 // New512_224 returns a new hash.Hash computing the SHA-512/224 checksum.
233 // New512_256 returns a new hash.Hash computing the SHA-512/256 checksum.
240 // New384 returns a new hash.Hash computing the SHA-384 checksum.
289 hash := d.checkSum()
302 func (d *digest) checkSum() [Size]byte {
344 // Sum512 returns the SHA512 checksum of the data.
349 return d.checkSum()
352 // Sum384 returns the SHA384 checksum of the data.
357 sum := d.checkSum()
362 // Sum512_224 returns the Sum512/224 checksum of the data.
367 sum := d.checkSum()
372 // Sum512_256 returns the Sum512/256 checksum of the data.
377 sum := d.checkSum()