1
0
mirror of https://github.com/volatiletech/authboss.git synced 2025-07-07 00:55:37 +02:00
Files
authboss/hasher.go

6 lines
84 B
Go
Raw Normal View History

package authboss
type Hasher interface {
GenerateHash(s string) (string, error)
}