github.com/humaniq/go-ethereum@v1.6.8-0.20171225131628-061223a13848/cmd/ethkey/main.go (about) 1 // Copyright 2017 The go-ethereum Authors 2 // This file is part of go-ethereum. 3 // 4 // go-ethereum is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // go-ethereum is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>. 16 17 package main 18 19 import ( 20 "fmt" 21 "os" 22 23 "github.com/ethereum/go-ethereum/cmd/utils" 24 "gopkg.in/urfave/cli.v1" 25 ) 26 27 const ( 28 defaultKeyfileName = "keyfile.json" 29 ) 30 31 var ( 32 gitCommit = "" // Git SHA1 commit hash of the release (set via linker flags) 33 34 app *cli.App // the main app instance 35 ) 36 37 var ( // Commonly used command line flags. 38 passphraseFlag = cli.StringFlag{ 39 Name: "passwordfile", 40 Usage: "the file that contains the passphrase for the keyfile", 41 } 42 43 jsonFlag = cli.BoolFlag{ 44 Name: "json", 45 Usage: "output JSON instead of human-readable format", 46 } 47 48 messageFlag = cli.StringFlag{ 49 Name: "message", 50 Usage: "the file that contains the message to sign/verify", 51 } 52 ) 53 54 // Configure the app instance. 55 func init() { 56 app = utils.NewApp(gitCommit, "an Ethereum key manager") 57 app.Commands = []cli.Command{ 58 commandGenerate, 59 commandInspect, 60 commandSignMessage, 61 commandVerifyMessage, 62 } 63 } 64 65 func main() { 66 if err := app.Run(os.Args); err != nil { 67 fmt.Fprintln(os.Stderr, err) 68 os.Exit(1) 69 } 70 }