Files
Vencloud/util/util.go
T
Lewis Crichton c85af2641b style: code maid is here!
refactored the project significantly to reduce the single-file monolith
2023-08-07 21:52:57 +01:00

11 lines
126 B
Go

package util
import (
"crypto/sha1"
"fmt"
)
func Hash(s string) string {
return fmt.Sprintf("%x", sha1.Sum([]byte(s)))
}