Home | History | Annotate | Download | only in sha256

Lines Matching refs:checkSum

19 // The size of a SHA256 checksum in bytes.
22 // The size of a SHA224 checksum in bytes.
48 // digest represents the partial evaluation of a checksum.
81 // New returns a new hash.Hash computing the SHA256 checksum.
88 // New224 returns a new hash.Hash computing the SHA224 checksum.
131 hash := d.checkSum()
138 func (d *digest) checkSum() [Size]byte {
176 // Sum256 returns the SHA256 checksum of the data.
181 return d.checkSum()
184 // Sum224 returns the SHA224 checksum of the data.
190 sum := d.checkSum()