diff options
author | Evangelos Pappas <epappas@evalonlabs.com> | 2018-09-04 19:45:27 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2018-09-04 19:45:27 +0800 |
commit | 84084df26c29c3e35075a0624ca7f5bf204b01e8 (patch) | |
tree | 20c5cf7d331b2a70fabcfa744ec313781b1a428b /cmd/ethkey/README.md | |
parent | 003e031994327ab24900aa95e0f516a13e97f76f (diff) | |
download | go-tangerine-84084df26c29c3e35075a0624ca7f5bf204b01e8.tar go-tangerine-84084df26c29c3e35075a0624ca7f5bf204b01e8.tar.gz go-tangerine-84084df26c29c3e35075a0624ca7f5bf204b01e8.tar.bz2 go-tangerine-84084df26c29c3e35075a0624ca7f5bf204b01e8.tar.lz go-tangerine-84084df26c29c3e35075a0624ca7f5bf204b01e8.tar.xz go-tangerine-84084df26c29c3e35075a0624ca7f5bf204b01e8.tar.zst go-tangerine-84084df26c29c3e35075a0624ca7f5bf204b01e8.zip |
cmd/ethkey: fix the README to match updated commands (#17332)
Diffstat (limited to 'cmd/ethkey/README.md')
-rw-r--r-- | cmd/ethkey/README.md | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/cmd/ethkey/README.md b/cmd/ethkey/README.md index cf72ba43d..48d3c9e9b 100644 --- a/cmd/ethkey/README.md +++ b/cmd/ethkey/README.md @@ -21,21 +21,33 @@ Private key information can be printed by using the `--private` flag; make sure to use this feature with great caution! -### `ethkey sign <keyfile> <message/file>` +### `ethkey signmessage <keyfile> <message/file>` Sign the message with a keyfile. It is possible to refer to a file containing the message. +To sign a message contained in a file, use the `--msgfile` flag. -### `ethkey verify <address> <signature> <message/file>` +### `ethkey verifymessage <address> <signature> <message/file>` Verify the signature of the message. It is possible to refer to a file containing the message. +To sign a message contained in a file, use the --msgfile flag. + + +### `ethkey changepassphrase <keyfile>` + +Change the passphrase of a keyfile. +use the `--newpasswordfile` to point to the new password file. ## Passphrases For every command that uses a keyfile, you will be prompted to provide the passphrase for decrypting the keyfile. To avoid this message, it is possible -to pass the passphrase by using the `--passphrase` flag pointing to a file that +to pass the passphrase by using the `--passwordfile` flag pointing to a file that contains the passphrase. + +## JSON + +In case you need to output the result in a JSON format, you shall by using the `--json` flag. |