Uprating of the passphrase pixie.
[u/mdw/catacomb] / dsig.1
CommitLineData
c65df279 1.\" -*-nroff-*-
2.de VS
3.sp 1
4.RS
5.nf
6.ft B
7..
8.de VE
9.ft R
10.fi
11.RE
12.sp 1
13..
14.ie t \{\
15. if \n(.g \{\
16. fam P
17. \}
18.\}
19.de hP
20.IP
21.ft B
22\h'-\w'\\$1\ 'u'\\$1\ \c
23.ft P
24..
25.ie t .ds o \(bu
26.el .ds o o
27.TH dsig 1 "30 September 2004" "Straylight/Edgeware" "Catacomb cryptographic library"
28.SH NAME
29dsig \- compute and verify signatures on collections of files
30.SH SYNOPSIS
31.B dsig
32.RB [ \-k
33.IR keyring ]
34.I command
35.PP
36where
37.I command
38is one of:
39.PP
40.B help
41.RI [ command ...]
42.br
43.B show
44.RI [ item ...]
45.br
46.B sign
47.RB [ \-0bqv ]
48.RB [ \-c
49.IR comment ]
50.RB [ \-k
51.IR tag ]
52.RB [ \-e
53.IR expire ]
54.br
55\h'8n'
56.RB [ \-f
57.IR file ]
58.RB [ \-o
59.IR output ]
60.br
61.B verify
62.RB [ \-qv ]
63.RI [ file ]
64.SH DESCRIPTION
65The
66.B dsig
67command signs and verifies signatures on a collection of files. It
68provides a number of subcommands, by which the various operations may be
69carried out.
70.SS "Global options"
71Before the command name,
72.I "global options"
73may be given. The following global options are supported:
74.TP
75.BR "\-h, \-\-help " [ \fIcommand ...]
76Writes a brief summary of
77.BR dsig 's
78various options to standard output, and returns a successful exit
79status. With command names, gives help on those commands.
80.TP
81.B "\-v, \-\-version"
82Writes the program's version number to standard output, and returns a
83successful exit status.
84.TP
85.B "\-u, \-\-usage"
86Writes a very terse command line summary to standard output, and returns
87a successful exit status.
88.TP
89.BI "\-k, \-\-keyring " file
90Names the keyring file which
91.B key
92is to process. The default keyring, used if this option doesn't specify
93one, is the file named
94.B keyring
95in the current directory. See
96.BR key (1)
97and
98.BR keyring (5)
99for more details about keyring files.
100.SH "KEY SETUP"
101A
102.I sigalgspec
103has the form
104.IR sig \c
105.RB [ / \c
106.IR hash ].
107If a
108.B sig
109attribute is present on the key, then it must have this form; otherwise,
110the key's type must have the form
111.BI dsig- \c
112.IR sigalgspec .
113Algorithm selections are taken from appropriately-named attributes, or,
114failing that, from the
115.IR sigalgspec .
116.PP
117The signature algorithm is chosen according to the setting of
118.I sig
119as follows. Run
120.B dsig show sig
121for a list of supported signature algorithms.
122.TP
123.B rsapkcs1
124This is almost the same as the RSASSA-PKCS1-v1_5 algorithm described in
125RFC3447; the difference is that the hash is left bare rather than being
126wrapped in a DER-encoded
127.B DigestInfo
128structure. This doesn't affect security since the key can only be used
129with the one hash function anyway, and dropping the DER wrapping permits
130rapid adoption of new hash functions. Regardless, use of this algorithm
131is not recommended, since the padding method has been shown vulnerable
132to attack. Use the
133.B rsa
134algorithm of the
135.B key add
136command (see
137.BR key (1))
138to generate the key.
139.TP
140.B rsapss
141This is the RSASSA-PSS algorithm described in RFC3447. It is the
142preferred RSA-based signature scheme. Use the
143.B rsa
144algorithm of the
145.B key add
146command (see
147.BR key (1))
148to generate the key.
149.TP
150.B dsa
151This is the DSA algorithm described in FIPS180-1 and FIPS180-2. Use the
152.B dsa
153algorithm of the
154.B key add
155command (see
156.BR key (1))
157to generate the key.
158.TP
159.B ecdsa
160This is the ECDSA algorithm described in ANSI X9.62 and FIPS180-2. Use
161the
162.B ec
163algorithm of the
164.B key add
165command (see
166.BR key (1))
167to generate the key.
168.TP
169.B kcdsa
170This is the revised KCDSA (Korean Certificate-based Digital Signature
171Algorithm) described in
172.I The Revised Version of KCDSA
173.RB ( http://dasan.sejong.ac.kr/~chlim/pub/kcdsa1.ps ).
174Use the
175.B dh
176algorithm of the
177.B key add
178command with the
179.B \-LS
180options (see
181.BR key (1))
182to generate the key.
183.TP
184.B eckcdsa
185This is an unofficial elliptic-curve analogue of the KCDSA algorithm.
186Use the
187.B ec
188algorithm of the
189.B key add
190command (see
191.BR key (1))
192to generate the key.
193.PP
194As well as the signature algorithm itself, a hash function is used.
195This is taken from the
196.B hash
197attribute on the key, or, failing that, from the
198.I hash
199specified in the
200.IR sigalgspec ,
201or, if that is absent, determined by the signature algorithm as follows.
202.hP \*o
203For
204.BR rsapkcs1 ,
205.BR rsapss ,
206.BR dsa ,
207and
208.BR ecdsa ,
209the default hash function is
210.BR sha .
211.hP \*o
212For
213.BR kcdsa
214and
215.BR eckcdsa ,
216the default hash function is
217.BR has160 .
218.PP
219Run
220.B dsig show hash
221for a list of supported hash functions.
222.SH "COMMAND REFERENCE"
223.SS help
224The
225.B help
226command behaves exactly as the
227.B \-\-help
228option. With no arguments, it shows an overview of
229.BR dsig 's
230options; with arguments, it describes the named subcommands.
231.SS show
232The
233.B show
234command prints various lists of tokens understood by
235.BR dsig .
236With no arguments, it prints all of the lists; with arguments, it prints
237just the named lists, in order. The recognized lists can be enumerated
238using the
239.VS
240dsig show list
241.VE
242command. The lists are as follows.
243.TP
244.B list
245The lists which can be enumerated by the
246.B show
247command.
248.TP
249.B sig
250The signature algorithms which can be used in a key's
251.B sig
252attribute.
253.TP
254.B hash
255The hash functions which can be used in a key's
256.B hash
257attribute.
258.SS sign
259The
260.B sign
261command creates a signature for a collection of files. The default
262behaviour is to read a list of whitespace-separated file names (see
263below for the precise format) from standard input and write the
264an output file, containing hashes of the files and a digital signature
265made by the key
266.B dsig
267in the current keyring, to standard output, in plain text with binary
268values Base64-encoded. It is intended to be used in conjunction with
269.BR find (1).
270This behaviour can be modified by specifying command-line options.
271.TP
272.B "\-0, \-\-null"
273Read null-terminated filenames, rather than whitespace-separated names.
274This is the recommended mode of operation if you have a
275.BR find (1)
276which understands the
277.B \-print0
278option.
279.TP
280.B "\-b, \-\-binary"
281Produce output in raw binary rather than the textual output. This isn't
282a useful thing to do unless you're trying to debug
283.BR dsig .
284.TP
285.B "\-v, \-\-verbose"
286Makes
287.B dsig
288more verbose. At present, this just means that it'll print the hashes
289of files that it comes across in hex. (Use
290.BR hashsum (1)
291if this is the output you actually wanted.)
292.TP
293.B "\-q, \-\-quiet"
294Makes
295.B dsig
296less verbose.
297.TP
298.BI "\-c, \-\-comment " string
299Writes
300.I string
301as a comment in the output file. The comment's integrity is protected
302by the signature.
303.TP
304.BI "\-f, \-\-file " name
305Read filenames from
306.I name
307instead of from standard input.
308.TP
309.BI "\-o, \-\-output " name
310Write output to
311.I name
312instead of to standard output.
313.TP
314.BI "\-k, \-\-key " tag
315Use the key named
316.I tag
317rather than the default
318.BR dsig .
319.TP
320.BI "\-e, \-\-expire " date
321Set the signature to expire at
322.IR date .
323The default is to expire 28 days from creation. Use
324.B forever
325to make the signature not expire.
326.PP
327The whitespace-separated format for filenames allows quoting and
328escaping of strange characters. The backslash
329.RB ` \e '
330can be used to escape whitespace, quotes, or other special characters
331(including itself), and to represent special characters using the
332standard C escape sequences
333.RB ` \ea ',
334.RB ` \eb ',
335.RB ` \ef ',
336.RB ` \en ',
337.RB ` \et ',
338and
339.RB ` \eb '.
340A filename can be quoted in
341.BR ` ... ',
342.BR ' ... '
343or
344.BR """" ... """".
345Whitespace within quotes is part of the filename. The quotes must be at
346the beginning and end of the name.
347.SS verify
348The
349.B verify
350command will verify signatures made by the
351.B sign
352command. With no arguments, it expects to read a text-format signature
353file from standard input; with an argument, it examines the file it
354names to see whether it's text or binary.
355.PP
356Command-line options provided are:
357.TP
358.B "\-v, \-\-verbose"
359Produce more informational output. The default verbosity level is 1.
360.TP
361.B "\-q, \-\-quiet"
362Produce less information output.
363.PP
364Output is written to standard output in a machine-readable format.
365Formatting errors cause the program to write a diagnostic to standard
366error and exit nonzero as usual. Lines begin with a keyword:
367.TP
368.BI "FAIL " reason
369An error prevented verification.
370.TP
371.BI "BAD " reason
372The signature is bad: some file had the wrong hash or the signature is
373invalid.
374.TP
375.BI "WARN " reason
376.B dsig
377encountered a situation which may or may not invalidate the signature.
378.TP
379.BI "OK " message
380The signature verified correctly.
381.TP
382.BI "INFO " note
383Any other information.
384.PP
385The information written at the various verbosity levels is as follows.
386.hP 0.
387No output. Watch the exit status.
388.B dsig
389exits zero if the signature was good.
390.hP 1.
391All
392.BR OK ,
393.B FAIL
394and
395.B WARN
396messages are printed.
397.hP 2.
398As for level 1; also
399.B BAD
400messages are printed describing reasons why the signature verification
401failed, and an
402.B INFO
403message is printed showing the signature file's comment if any.
404.hP 3.
405As for level 2; also
406.B INFO
407messages are shown listing the signing program's identification string,
408the signing key, the signature and expiry dates, and actual signature
409verification.
410.hP 4.
411As for level 3; also
412.B INFO
413messages are printed for each file covered, showing its name and hash.
414.SH "OUTPUT FORMAT"
415There are two output formats: textual and binary. The hash used in the
416digital signature is always computed on the
417.I binary
418version of the data, regardless of the external representation.
419.SS "Textual format"
420Within the file, whitespace and comments between strings are ignored. A
421comment begins with a hash
422.RB (` # ')
423and extends until the next newline.
424.PP
425Strings are either quoted or whitespace-delimited. A string may be
426quoted by
427.BR ` ... ',
428.BR ' ... '
429or
430.BR """" ... """".
431The end-quote character can be backslash-escaped within the string. An
432occurrence of the unescaped end-quote character terminates the string.
433A whitespace-delimited string is terminated by any unescaped whitespace
434character. The C-language escape sequences
435.RB ` \ea ',
436.RB ` \eb ',
437.RB ` \ef ',
438.RB ` \en ',
439.RB ` \et ',
440and
441.RB ` \eb '
442are recognized within either kind of string.
443.PP
444Blocks within the file consist of sequences of strings. The first
445string is a
446.I tag
447\(en a simple string ending in a colon
448.RB (` : ')
449\(en which describes the format of the remaining strings.
450.SS "Binary format"
451The file consists of a sequence of blocks, each of which begins with a
452tag byte. The format of the test of the block depends on the tag.
453Strings are null-terminated; all integers are in network byte order.
454.PP
455A binary file always begins with an ident block, which has a tag of 0.
456.SS "Block types"
457The following block types are known. They must appear in the order
458given, and except where noted must appear exactly once each.
459.TP
460.BR "ident: " (0)
461Identification string of the generating program.
462.BR "keyid: " (1)
463The signing key's id, as eight hex digits (text) or a 32-bit integer
464(binary).
465.TP
466.BR "comment: " (2)
467The comment string set with the
468.B \-c
469option to the
470.B sign
471command. This block need not appear.
472.TP
473.BR "date: " (3)
474The date the signature was made. In a text file, this has the form
475.IB yyyy-mm-dd
476.IB hh:mm:ss
477.IR timezone ;
478in a binary file, it's a 64-bit integer representing the POSIX time.
479.TP
480.BR "expires: " (4)
481The expiry time of the signature, expressed as for
482.BR date: .
483A non-expiring signature is represented by the string
484.B forever
485in text files, or all-bits-set in binary.
486.TP
487.BR "file: " (5)
488A file hash. In text, this is two strings which are the Base-64-encoded
489hash and the file name; in binary, this is a 16-bit hash length, the raw
490hash, and the null-terminated filename. There can be any number of
491.B file:
492blocks.
493.TP
494.BR "signature: " (6)
495The signature. In text, this is the Base-64-encoded signature; in
496binary, it is a 16-bit length followed by the binary signature.
497.PP
498The signature covers the
499.I binary
500representations of the file's
501.BR date: ,
502.B expires:
503and
504.B file:
505blocks.
506.SH "SEE ALSO"
507.BR key (1),
508.BR hashsum (1),
509.BR catcrypt (1),
fa54fe1e 510.BR catsign (1),
c65df279 511.BR keyring (5).
512.SH AUTHOR
513Mark Wooding, <mdw@nsict.org>