aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/ethkey/inspect.go
blob: 8a7aeef8488bbcaffa69c5d7ec3aa58a88c95036 (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
package main

import (
    "encoding/hex"
    "fmt"
    "io/ioutil"

    "github.com/ethereum/go-ethereum/accounts/keystore"
    "github.com/ethereum/go-ethereum/cmd/utils"
    "github.com/ethereum/go-ethereum/crypto"
    "gopkg.in/urfave/cli.v1"
)

type outputInspect struct {
    Address    string
    PublicKey  string
    PrivateKey string
}

var commandInspect = cli.Command{
    Name:      "inspect",
    Usage:     "inspect a keyfile",
    ArgsUsage: "<keyfile>",
    Description: `
Print various information about the keyfile.
Private key information can be printed by using the --private flag;
make sure to use this feature with great caution!`,
    Flags: []cli.Flag{
        passphraseFlag,
        jsonFlag,
        cli.BoolFlag{
            Name:  "private",
            Usage: "include the private key in the output",
        },
    },
    Action: func(ctx *cli.Context) error {
        keyfilepath := ctx.Args().First()

        // Read key from file.
        keyjson, err := ioutil.ReadFile(keyfilepath)
        if err != nil {
            utils.Fatalf("Failed to read the keyfile at '%s': %v", keyfilepath, err)
        }

        // Decrypt key with passphrase.
        passphrase := getPassPhrase(ctx, false)
        key, err := keystore.DecryptKey(keyjson, passphrase)
        if err != nil {
            utils.Fatalf("Error decrypting key: %v", err)
        }

        // Output all relevant information we can retrieve.
        showPrivate := ctx.Bool("private")
        out := outputInspect{
            Address: key.Address.Hex(),
            PublicKey: hex.EncodeToString(
                crypto.FromECDSAPub(&key.PrivateKey.PublicKey)),
        }
        if showPrivate {
            out.PrivateKey = hex.EncodeToString(crypto.FromECDSA(key.PrivateKey))
        }

        if ctx.Bool(jsonFlag.Name) {
            mustPrintJSON(out)
        } else {
            fmt.Println("Address:       ", out.Address)
            fmt.Println("Public key:    ", out.PublicKey)
            if showPrivate {
                fmt.Println("Private key:   ", out.PrivateKey)
            }
        }
        return nil
    },
}