aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/ethkey/main.go
diff options
context:
space:
mode:
authorSteven Roose <stevenroose@gmail.com>2018-06-08 21:07:07 +0800
committerFelix Lange <fjl@users.noreply.github.com>2018-06-08 21:07:07 +0800
commit13af27641829f61d1e6b383e37aab6caae22f2c1 (patch)
tree35607044459f66249bf8d39e32996b1fcd0c4cf7 /cmd/ethkey/main.go
parentea06da089264508601a9f967160b8c7f335071fa (diff)
downloadgo-tangerine-13af27641829f61d1e6b383e37aab6caae22f2c1.tar
go-tangerine-13af27641829f61d1e6b383e37aab6caae22f2c1.tar.gz
go-tangerine-13af27641829f61d1e6b383e37aab6caae22f2c1.tar.bz2
go-tangerine-13af27641829f61d1e6b383e37aab6caae22f2c1.tar.lz
go-tangerine-13af27641829f61d1e6b383e37aab6caae22f2c1.tar.xz
go-tangerine-13af27641829f61d1e6b383e37aab6caae22f2c1.tar.zst
go-tangerine-13af27641829f61d1e6b383e37aab6caae22f2c1.zip
cmd/ethkey: add command to change key passphrase (#16516)
This change introduces ethkey changepassphrase <keyfile> to change the passphrase of a key file.
Diffstat (limited to 'cmd/ethkey/main.go')
-rw-r--r--cmd/ethkey/main.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/ethkey/main.go b/cmd/ethkey/main.go
index 4127f5566..c434da0c0 100644
--- a/cmd/ethkey/main.go
+++ b/cmd/ethkey/main.go
@@ -38,6 +38,7 @@ func init() {
app.Commands = []cli.Command{
commandGenerate,
commandInspect,
+ commandChangePassphrase,
commandSignMessage,
commandVerifyMessage,
}