Home | History | Annotate | Download | only in sha256

Lines Matching defs:checkSum

20 // The size of a SHA256 checksum in bytes.
23 // The size of a SHA224 checksum in bytes.
49 // digest represents the partial evaluation of a checksum.
168 // New returns a new hash.Hash computing the SHA256 checksum. The Hash
178 // New224 returns a new hash.Hash computing the SHA224 checksum.
221 hash := d.checkSum()
228 func (d *digest) checkSum() [Size]byte {
266 // Sum256 returns the SHA256 checksum of the data.
271 return d.checkSum()
274 // Sum224 returns the SHA224 checksum of the data.
280 sum := d.checkSum()