mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-22 16:13:31 +01:00
20 lines
350 B
Go
20 lines
350 B
Go
package signal
|
|
|
|
import (
|
|
"crypto/sha256"
|
|
"encoding/hex"
|
|
)
|
|
|
|
const (
|
|
// HexTable Table of Hexadecimal chars
|
|
HexTable = "0123456789abcdef"
|
|
)
|
|
|
|
// FingerPrint generates a SHA256 Fingerprint of the string
|
|
func FingerPrint(key string) string {
|
|
hasher := sha256.New()
|
|
hasher.Write([]byte(key))
|
|
sha := hasher.Sum(nil)
|
|
return hex.EncodeToString(sha)
|
|
}
|