.\" $OpenBSD: signify.1,v 1.5 2013/12/31 18:18:36 jmc Exp $ .\" .\"Copyright (c) 2013 Marc Espie .\"Copyright (c) 2013 Ted Unangst .\" .\"Permission to use, copy, modify, and distribute this software for any .\"purpose with or without fee is hereby granted, provided that the above .\"copyright notice and this permission notice appear in all copies. .\" .\"THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES .\"WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF .\"MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR .\"ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES .\"WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN .\"ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\"OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .Dd $Mdocdate: December 31 2013 $ .Dt SIGNIFY 1 .Os .Sh NAME .Nm signify .Nd cryptographically sign and verify files .Sh SYNOPSIS .Nm signify .Op Fl N .Op Fl I Ar input .Op Fl O Ar output .Op Fl P Ar pubkey .Op Fl S Ar seckey .Fl V Ar generate | sign | verify .Sh DESCRIPTION The .Nm utility creates and verifies cryptographic signatures. The mode of operation is selected by the .Fl V option. .Pp The options are as follows: .Bl -tag -width Ds .It Fl I Ar input Input file to sign or verify. .It Fl N Do not ask for a passphrase during key generation. Otherwise, .Nm will prompt the user for a passphrase on the terminal. .It Fl O Ar output The signature file to create or verify. The default is .Ar input Ns .sig . .It Fl P Ar pubkey Public key produced by .Ar generate , and used by .Ar verify to check a signature. .It Fl S Ar seckey Secret (private) key produced by .Ar generate , and used by .Ar sign to sign a message. .It Fl V Ar generate | sign | verify Select the desired operation. .El .Pp The key and signature files created by .Nm have the same format. The first line of the file is a free form text comment that may be edited, so long as it does not exceed a single line. The second line of the file is the actual key or signature base64 encoded. .Sh EXIT STATUS .Ex -std signify It may fail because of one of the following reasons: .Pp .Bl -bullet -compact .It Some necessary files do not exist. .It Entered passphrase is incorrect. .It The message file was corrupted and its signature does not match. .It The message file is too large. .El .Sh EXAMPLES Create a new keypair: .Dl $ signify -P newkey.pub -S newkey.sec -V generate .Pp Sign a file, specifying a signature name: .Dl $ signify -S key.sec -I message.txt -O msg.sig -V sign .Pp Verify a signature, using the default signature name: .Dl $ signify -P key.pub -I generalsorders.txt -V verify .Sh SEE ALSO .Xr cmp 1 , .Xr sha256 1 , .Xr ssh 1 .Sh HISTORY The .Nm command first appeared in .Ox 5.5