1
0
mirror of https://github.com/TwiN/gatus.git synced 2026-02-04 18:09:42 +00:00
Files
gatus/security/sha512.go
2020-10-23 15:58:59 -04:00

14 lines
264 B
Go

package security
import (
"crypto/sha512"
"fmt"
)
// Sha512 hashes a provided string using SHA512 and returns the resulting hash as a string
func Sha512(s string) string {
hash := sha512.New()
hash.Write([]byte(s))
return fmt.Sprintf("%x", hash.Sum(nil))
}