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