mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-08 16:01:29 +02:00
9 lines
116 B
Go
9 lines
116 B
Go
package peer
|
|
|
|
func shortenKey(pubKey string) string {
|
|
if len(pubKey) < 7 {
|
|
return pubKey
|
|
}
|
|
return pubKey[:7]
|
|
}
|