all repos

onasty @ 3f20faca4e44851dad63d0c2e85b49abc95a28b2

a one-time notes service

onasty/internal/hasher/hasher.go(view raw)

1
2
3
4
5
6
package hasher

type Hasher interface {
	// Hash takes a string as input and returns its hash
	Hash(str string) (string, error)
}