aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorGibheer <gibheer@gmail.com>2015-07-19 17:33:35 +0200
committerGibheer <gibheer@gmail.com>2015-07-19 17:33:35 +0200
commit1b8ac827542f23e85a0eb399369a33fc206c72e7 (patch)
tree03d122087214bd9fba9e1090033d4dbbd22256dd /main.go
parente337626eac443b58521633e71351587a9da8165d (diff)
use public key instead of private key
This fixes a bug where the public key was not used to verify messages.
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 9b9ab0a..3235d1e 100644
--- a/main.go
+++ b/main.go
@@ -74,7 +74,7 @@ func sign_input(cmd *Command, args []string) {
// verify a message using a signature and a public key
func verify_input(cmd *Command, args []string) {
- err := checkFlags(checkPrivateKey, checkInput, checkOutput, checkSignature)
+ err := checkFlags(checkPublicKey, checkInput, checkOutput, checkSignature)
if err != nil {
crash_with_help(cmd, ErrorFlagInput, "Flags invalid: %s", err)
}