-.\" $OpenBSD: signify.1,v 1.11 2014/01/10 04:24:18 deraadt Exp $
+.\" $OpenBSD: signify.1,v 1.12 2014/01/10 04:34:24 tedu Exp $
.\"
.\"Copyright (c) 2013 Marc Espie <espie@openbsd.org>
.\"Copyright (c) 2013 Ted Unangst <tedu@openbsd.org>
.Fl s Ar seckey
.Nm signify
.Fl I
-.Op Fl o Ar signature
+.Op Fl o Ar sigfile
.Op Fl p Ar pubkey
.Op Fl s Ar seckey
.Nm signify
.Fl S
.Op Fl e
-.Op Fl o Ar output
+.Op Fl o Ar sigfile
.Fl s Ar seckey
.Ar message
.Nm signify
.Fl V
.Op Fl e
-.Op Fl o Ar output
+.Op Fl o Ar sigfile
.Fl p Ar pubkey
.Ar message
.Sh DESCRIPTION
an input file
.Ar message .
The mode of operation is selected with the following options:
-.Bl -tag -width Dssoutput
+.Bl -tag -width Dsssigfile
.It Fl G
Generate a new keypair.
.It Fl I
.El
.Pp
The other options are as follows:
-.Bl -tag -width Dssoutput
+.Bl -tag -width Dsssignature
.It Fl e
Embed the message after the signature when signing.
For verification, extract the message from the signature.
.It Fl o Ar sigfile
The signature file to create or verify.
The default is
-.Ar input Ns .sig .
+.Ar message Ns .sig .
.It Fl p Ar pubkey
Public key produced by
.Fl G ,
-/* $OpenBSD: signify.c,v 1.23 2014/01/10 04:23:37 deraadt Exp $ */
+/* $OpenBSD: signify.c,v 1.24 2014/01/10 04:34:24 tedu Exp $ */
/*
* Copyright (c) 2013 Ted Unangst <tedu@openbsd.org>
*
fprintf(stderr, "usage:"
#ifndef VERIFYONLY
"\t%s -G [-n] -p pubkey -s seckey\n"
- "\t%s -I [-o sig] [-p pubkey] [-s seckey]\n"
- "\t%s -S [-e] [-o output] -s seckey message\n"
+ "\t%s -I [-o sigfile] [-p pubkey] [-s seckey]\n"
+ "\t%s -S [-e] [-o sigfile] -s seckey message\n"
#endif
- "\t%s -V [-e] [-o output] -p pubkey message\n",
+ "\t%s -V [-e] [-o sigfile] -p pubkey message\n",
#ifndef VERIFYONLY
__progname, __progname, __progname,
#endif