mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-25 17:43:38 +01:00
19 lines
298 B
Go
19 lines
298 B
Go
package signal
|
|
|
|
import (
|
|
"crypto/sha256"
|
|
"encoding/hex"
|
|
)
|
|
|
|
const (
|
|
HexTable = "0123456789abcdef"
|
|
)
|
|
|
|
// 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)
|
|
}
|