Merge pull request #1324 from stevvooe/digest-from-bytes

digest: add NewDigestFromBytes for completeness
pull/1301/merge
Aaron Lehmann 2016-01-08 01:04:27 +07:00
commit 83ccbd18c0
1 changed files with 9 additions and 1 deletions

View File

@ -28,7 +28,15 @@ type Digest string
// NewDigest returns a Digest from alg and a hash.Hash object.
func NewDigest(alg Algorithm, h hash.Hash) Digest {
return Digest(fmt.Sprintf("%s:%x", alg, h.Sum(nil)))
return NewDigestFromBytes(alg, h.Sum(nil))
}
// NewDigestFromBytes returns a new digest from the byte contents of p.
// Typically, this can come from hash.Hash.Sum(...) or xxx.SumXXX(...)
// functions. This is also useful for rebuilding digests from binary
// serializations.
func NewDigestFromBytes(alg Algorithm, p []byte) Digest {
return Digest(fmt.Sprintf("%s:%x", alg, p))
}
// NewDigestFromHex returns a Digest from alg and a the hex encoded digest.