digest: remove stuttering ParseDigest function

Signed-off-by: Stephen J Day <stephen.day@docker.com>
This commit is contained in:
Stephen J Day 2016-12-15 14:58:54 -08:00
parent ad80b3d492
commit d5cc235c48
No known key found for this signature in database
GPG key ID: FB5F6B2905D7ECF3
3 changed files with 9 additions and 5 deletions

View file

@ -63,12 +63,16 @@ var (
// ParseDigest parses s and returns the validated digest object. An error will
// be returned if the format is invalid.
func ParseDigest(s string) (Digest, error) {
func Parse(s string) (Digest, error) {
d := Digest(s)
return d, d.Validate()
}
// ParseDigest is deprecated. Use Parse.
func ParseDigest(s string) (Digest, error) {
return Parse(s)
}
// FromReader returns the most valid digest for the underlying content using
// the canonical digest algorithm.
func FromReader(rd io.Reader) (Digest, error) {