aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/nodekey/main.go
blob: 1ba4177040473e2006cf9079a0ff05471f6214dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package main

import (
    "encoding/hex"
    "fmt"
    "os"

    "github.com/dexon-foundation/dexon/cmd/utils"
    "github.com/dexon-foundation/dexon/crypto"

    "gopkg.in/urfave/cli.v1"
)

const (
    defaultKeyfileName = "node.key"
)

// Git SHA1 commit hash of the release (set via linker flags)
var gitCommit = ""

var app *cli.App

func init() {
    app = utils.NewApp(gitCommit, "DEXON node key manager")
    app.Commands = []cli.Command{
        commandGenerate,
        commandInspect,
    }
}

var commandGenerate = cli.Command{
    Name:        "generate",
    Usage:       "generate new keyfile",
    ArgsUsage:   "[ <keyfile> ]",
    Description: `Generate a new node key.`,
    Action: func(ctx *cli.Context) error {
        // Check if keyfile path given and make sure it doesn't already exist.
        keyfilepath := ctx.Args().First()
        if keyfilepath == "" {
            keyfilepath = defaultKeyfileName
        }
        if _, err := os.Stat(keyfilepath); err == nil {
            utils.Fatalf("Keyfile already exists at %s.", keyfilepath)
        } else if !os.IsNotExist(err) {
            utils.Fatalf("Error checking if keyfile exists: %v", err)
        }

        privKey, err := crypto.GenerateKey()
        if err != nil {
            utils.Fatalf("Failed to generate random private key: %v", err)
        }

        address := crypto.PubkeyToAddress(privKey.PublicKey)
        err = crypto.SaveECDSA(keyfilepath, privKey)
        if err != nil {
            utils.Fatalf("Failed to save keyfile: %v", err)
        }

        fmt.Printf("Node Address: %s\n", address.String())
        fmt.Printf("Public Key: 0x%s\n",
            hex.EncodeToString(crypto.FromECDSAPub(&privKey.PublicKey)))
        return nil
    },
}

var commandInspect = cli.Command{
    Name:        "inspect",
    Usage:       "inspect a keyfile",
    ArgsUsage:   "[ <keyfile> ]",
    Description: `Generate a new node key.`,
    Action: func(ctx *cli.Context) error {
        keyfilepath := ctx.Args().First()

        privKey, err := crypto.LoadECDSA(keyfilepath)
        if err != nil {
            utils.Fatalf("Failed to read key file: %v", err)
        }

        address := crypto.PubkeyToAddress(privKey.PublicKey)

        fmt.Printf("Node Address: %s\n", address.String())
        fmt.Printf("Public Key: 0x%s\n",
            hex.EncodeToString(crypto.FromECDSAPub(&privKey.PublicKey)))
        return nil
    },
}

func main() {
    if err := app.Run(os.Args); err != nil {
        fmt.Fprintln(os.Stderr, err)
        os.Exit(1)
    }
}