forked from TrueCloudLab/restic
54b8337813
This functionality has gone unused since4b3dc415ef
changed hashing.Reader's only client to use ioutil.ReadAll on a bufio.Reader wrapping the hashing Reader. Revertsbcb852a8d0
.
29 lines
626 B
Go
29 lines
626 B
Go
package hashing
|
|
|
|
import (
|
|
"hash"
|
|
"io"
|
|
)
|
|
|
|
// Reader hashes all data read from the underlying reader.
|
|
type Reader struct {
|
|
r io.Reader
|
|
h hash.Hash
|
|
}
|
|
|
|
// NewReader returns a new Reader that uses the hash h. If the underlying
|
|
// reader supports WriteTo then the returned reader will do so too.
|
|
func NewReader(r io.Reader, h hash.Hash) *Reader {
|
|
return &Reader{r: r, h: h}
|
|
}
|
|
|
|
func (h *Reader) Read(p []byte) (int, error) {
|
|
n, err := h.r.Read(p)
|
|
_, _ = h.h.Write(p[:n]) // Never returns an error.
|
|
return n, err
|
|
}
|
|
|
|
// Sum returns the hash of the data read so far.
|
|
func (h *Reader) Sum(d []byte) []byte {
|
|
return h.h.Sum(d)
|
|
}
|