mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-29 14:45:07 +03:00

standalone cli tool like genkeys/main.go that uses the address.AddrForKey function to convert a pubkey to an IPv6 address. ``` +$ go run main.go <thepubkey>. +IP: <theipv6ip> ```
26 lines
500 B
Go
26 lines
500 B
Go
/*
|
|
|
|
This file converts a public to to an IPv6 address. Example:
|
|
$ go run main.go <pubkey>.
|
|
IP: <ipv6ip>
|
|
|
|
*/
|
|
package main
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"fmt"
|
|
"net"
|
|
"os"
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/address"
|
|
)
|
|
|
|
func main() {
|
|
pub, err := hex.DecodeString(os.Args[1])
|
|
if err != nil {
|
|
fmt.Println("Failed to decode provided public key")
|
|
os.Exit(1)
|
|
}
|
|
addr := address.AddrForKey(pub)
|
|
fmt.Println("IP:", net.IP(addr[:]).String())
|
|
}
|