diff options
Diffstat (limited to 'plumbing/hash.go')
-rw-r--r-- | plumbing/hash.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/plumbing/hash.go b/plumbing/hash.go index 637a425..afc602a 100644 --- a/plumbing/hash.go +++ b/plumbing/hash.go @@ -71,3 +71,13 @@ type HashSlice []Hash func (p HashSlice) Len() int { return len(p) } func (p HashSlice) Less(i, j int) bool { return bytes.Compare(p[i][:], p[j][:]) < 0 } func (p HashSlice) Swap(i, j int) { p[i], p[j] = p[j], p[i] } + +// IsHash returns true if the given string is a valid hash. +func IsHash(s string) bool { + if len(s) != 40 { + return false + } + + _, err := hex.DecodeString(s) + return err == nil +} |