Preliminary documentation for CMS utility.
[openssl.git] / doc / apps / cms.pod
1 =pod
2
3 =head1 NAME
4
5 cms - CMS utility
6
7 =head1 SYNOPSIS
8
9 B<openssl> B<cms>
10 [B<-encrypt>]
11 [B<-decrypt>]
12 [B<-sign>]
13 [B<-resign>]
14 [B<-verify>]
15 [B<-cmsout>]
16 [B<-des>]
17 [B<-des3>]
18 [B<-rc2-40>]
19 [B<-rc2-64>]
20 [B<-rc2-128>]
21 [B<-aes128>]
22 [B<-aes192>]
23 [B<-aes256>]
24 [B<-camellia128>]
25 [B<-camellia192>]
26 [B<-camellia256>]
27 [B<-in file>]
28 [B<-certfile file>]
29 [B<-signer file>]
30 [B<-recip  file>]
31 [B<-inform SMIME|PEM|DER>]
32 [B<-passin arg>]
33 [B<-inkey file>]
34 [B<-out file>]
35 [B<-outform SMIME|PEM|DER>]
36 [B<-content file>]
37 [B<-to addr>]
38 [B<-from ad>]
39 [B<-subject s>]
40 [B<-text>]
41 [B<-indef>]
42 [B<-noindef>]
43 [B<-stream>]
44 [B<-rand file(s)>]
45 [B<-md digest>]
46 [cert.pem]...
47
48 =head1 DESCRIPTION
49
50 The B<cms> command handles S/MIME v3.1 mail. It can encrypt, decrypt, sign and
51 verify, compress and uncompress S/MIME messages.
52
53 =head1 COMMAND OPTIONS
54
55 There are twelve operation options that set the type of operation to be
56 performed.  The meaning of the other options varies according to the operation
57 type.
58
59 =over 4
60
61 =item B<-encrypt>
62
63 encrypt mail for the given recipient certificates. Input file is the message
64 to be encrypted. The output file is the encrypted mail in MIME format. The
65 actual CMS type is <B>EnvelopedData<B>.
66
67 =item B<-decrypt>
68
69 decrypt mail using the supplied certificate and private key. Expects an
70 encrypted mail message in MIME format for the input file. The decrypted mail
71 is written to the output file.
72
73 =item B<-sign>
74
75 sign mail using the supplied certificate and private key. Input file is
76 the message to be signed. The signed message in MIME format is written
77 to the output file.
78
79 =item B<-verify>
80
81 verify signed mail. Expects a signed mail message on input and outputs
82 the signed data. Both clear text and opaque signing is supported.
83
84 =item B<-cmsout>
85
86 takes an input message and writes out a PEM encoded CMS structure.
87
88 =item B<-resign>
89
90 resign a message: take an existing message and one or more new signers.
91
92 =item B<-data_create>
93
94 Create a CMS B<Data> type.
95
96 =item B<-data_out>
97
98 B<Data> type and output the content.
99
100 =item B<-digest_create>
101
102 Create a CMS B<DigestedData> type.
103
104 =item B<-digest_verify>
105
106 Verify a CMS B<DigestedData> type and output the content.
107
108 =item B<-compress>
109
110 Create a CMS B<CompressedData> type. OpenSSL must be compiled with B<zlib>
111 support for this option to work, otherwise it will output an error.
112
113 =item B<-uncompress>
114
115 Uncompress a CMS B<CompressedData> type and output the content. OpenSSL must be
116 compiled with B<zlib> support for this option to work, otherwise it will
117 output an error.
118
119 =item B<-EncryptedData_encrypt>
120
121 Encrypt suppled content using supplied symmetric key and algorithm using a CMS
122 B<EncrytedData> type and output the content.
123
124 =item B<-in filename>
125
126 the input message to be encrypted or signed or the MIME message to
127 be decrypted or verified.
128
129 =item B<-inform SMIME|PEM|DER>
130
131 this specifies the input format for the CMS structure. The default
132 is B<SMIME> which reads an S/MIME format message. B<PEM> and B<DER>
133 format change this to expect PEM and DER format CMS structures
134 instead. This currently only affects the input format of the CMS
135 structure, if no CMS structure is being input (for example with
136 B<-encrypt> or B<-sign>) this option has no effect.
137
138 =item B<-out filename>
139
140 the message text that has been decrypted or verified or the output MIME
141 format message that has been signed or verified.
142
143 =item B<-outform SMIME|PEM|DER>
144
145 this specifies the output format for the CMS structure. The default
146 is B<SMIME> which write an S/MIME format message. B<PEM> and B<DER>
147 format change this to write PEM and DER format CMS structures
148 instead. This currently only affects the output format of the CMS
149 structure, if no CMS structure is being output (for example with
150 B<-verify> or B<-decrypt>) this option has no effect.
151
152 =item B<-stream -indef -noindef>
153
154 the B<-stream> and B<-indef> options are equivalent and enable streaming I/O
155 for encoding operations. This permits single pass processing of data without
156 the need to hold the entire contents in memory, potentially supporting very
157 large files. Streaming is automatically set for S/MIME signing with detached
158 data if the output format is B<SMIME> it is currently off by default for all
159 other operations.
160
161 =item B<-noindef>
162
163 disable streaming I/O where it would produce and indefinite length constructed
164 encoding. This option currently has no effect. In future streaming will be
165 enabled by default on all relevant operations and this option will disable it.
166
167 =item B<-content filename>
168
169 This specifies a file containing the detached content, this is only
170 useful with the B<-verify> command. This is only usable if the CMS
171 structure is using the detached signature form where the content is
172 not included. This option will override any content if the input format
173 is S/MIME and it uses the multipart/signed MIME content type.
174
175 =item B<-text>
176
177 this option adds plain text (text/plain) MIME headers to the supplied
178 message if encrypting or signing. If decrypting or verifying it strips
179 off text headers: if the decrypted or verified message is not of MIME 
180 type text/plain then an error occurs.
181
182 =item B<-CAfile file>
183
184 a file containing trusted CA certificates, only used with B<-verify>.
185
186 =item B<-CApath dir>
187
188 a directory containing trusted CA certificates, only used with
189 B<-verify>. This directory must be a standard certificate directory: that
190 is a hash of each subject name (using B<x509 -hash>) should be linked
191 to each certificate.
192
193 =item B<-md digest>
194
195 digest algorithm to use when signing or resigning. If not present then the
196 default digest algorithm for the signing key will be used (usually SHA1).
197
198 =item B<-des -des3 -rc2-40 -rc2-64 -rc2-128 -aes128 -aes192 -aes256 -camellia128 -camellia192 -camellia256>
199
200 the encryption algorithm to use. DES (56 bits), triple DES (168 bits), 40, 64
201 or 128 bit RC2, 128, 192 or 256 bit AES, or 128, 192 or 256 bit Camellia
202 respectively. Any other cipher name (as recognized by the
203 EVP_get_cipherbyname() function) can also be used preceded by a dash, for 
204 example B<-aes_128_cbc>.
205
206 If not specified triple DES is used. Only used with B<-encrypt> and 
207 B<-EncryptedData_create> commands.
208
209 =item B<-nointern>
210
211 when verifying a message normally certificates (if any) included in
212 the message are searched for the signing certificate. With this option
213 only the certificates specified in the B<-certfile> option are used.
214 The supplied certificates can still be used as untrusted CAs however.
215
216 =item B<-noverify>
217
218 do not verify the signers certificate of a signed message.
219
220 =item B<-nocerts>
221
222 when signing a message the signer's certificate is normally included
223 with this option it is excluded. This will reduce the size of the
224 signed message but the verifier must have a copy of the signers certificate
225 available locally (passed using the B<-certfile> option for example).
226
227 =item B<-noattr>
228
229 normally when a message is signed a set of attributes are included which
230 include the signing time and supported symmetric algorithms. With this
231 option they are not included.
232
233 =item B<-nosmimecap>
234
235 exclude the list of supported algorithms from signed attributes, other options
236 such as signing time and content type are still included.
237
238 =item B<-binary>
239
240 normally the input message is converted to "canonical" format which is
241 effectively using CR and LF as end of line: as required by the S/MIME
242 specification. When this option is present no translation occurs. This
243 is useful when handling binary data which may not be in MIME format.
244
245 =item B<-nodetach>
246
247 when signing a message use opaque signing: this form is more resistant
248 to translation by mail relays but it cannot be read by mail agents that
249 do not support S/MIME.  Without this option cleartext signing with
250 the MIME type multipart/signed is used.
251
252 =item B<-certfile file>
253
254 allows additional certificates to be specified. When signing these will
255 be included with the message. When verifying these will be searched for
256 the signers certificates. The certificates should be in PEM format.
257
258 =item B<-signer file>
259
260 a signing certificate when signing or resigning a message, this option can be
261 used multiple times if more than one signer is required. If a message is being
262 verified then the signers certificates will be written to this file if the
263 verification was successful.
264
265 =item B<-recip file>
266
267 the recipients certificate when decrypting a message. This certificate
268 must match one of the recipients of the message or an error occurs.
269
270 =item B<-keyid>
271
272 use subject key identifier to identify certificates instead of issuer name and
273 serial number. The supplied certificate B<must> include a subject key
274 identifier extension. Supported by B<-sign> and B<-encrypt> options.
275
276 =item B<-secretkey key>
277
278 specify symmetric key to use. The key must be supplied in hex format and be
279 consistent with the algorithm used. Supported by the B<-EncryptedData_encrypt>
280 B<-EncrryptedData_decrypt>, B<-encrypt> and B<-decrypt> options. When used
281 with B<-encrypt> or B<-decrypt> the supplied key is used to wrap or unwrap the
282 content encryption key using an AES key in the B<KEKRecipientInfo> type.
283
284 =item B<-secretkeyid id>
285
286 the key identifier for the supplied symmetric key for B<KEKRecipientInfo> type.
287 This option B<must> be present if the B<-secretkey> option is used with
288 B<-encrypt>. With B<-decrypt> operations the B<id> is used to locate the
289 relevant key if it is not supplied then an attempt is used to decrypt any
290 B<KEKRecipientInfo> structures.
291
292 =item B<-econtent_type type>
293
294 set the encapsulated content type to B<type> if not supplied the B<Data> type
295 is used. The B<type> argument can be any valid OID name in either text or
296 numerical format. 
297
298 =item B<-inkey file>
299
300 the private key to use when signing or decrypting. This must match the
301 corresponding certificate. If this option is not specified then the
302 private key must be included in the certificate file specified with
303 the B<-recip> or B<-signer> file. When signing this option can be used
304 multiple times to specify successive keys.
305
306 =item B<-passin arg>
307
308 the private key password source. For more information about the format of B<arg>
309 see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)|openssl(1)>.
310
311 =item B<-rand file(s)>
312
313 a file or files containing random data used to seed the random number
314 generator, or an EGD socket (see L<RAND_egd(3)|RAND_egd(3)>).
315 Multiple files can be specified separated by a OS-dependent character.
316 The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
317 all others.
318
319 =item B<cert.pem...>
320
321 one or more certificates of message recipients: used when encrypting
322 a message. 
323
324 =item B<-to, -from, -subject>
325
326 the relevant mail headers. These are included outside the signed
327 portion of a message so they may be included manually. If signing
328 then many S/MIME mail clients check the signers certificate's email
329 address matches that specified in the From: address.
330
331 =back
332
333 =head1 NOTES
334
335 The MIME message must be sent without any blank lines between the
336 headers and the output. Some mail programs will automatically add
337 a blank line. Piping the mail directly to sendmail is one way to
338 achieve the correct format.
339
340 The supplied message to be signed or encrypted must include the
341 necessary MIME headers or many S/MIME clients wont display it
342 properly (if at all). You can use the B<-text> option to automatically
343 add plain text headers.
344
345 A "signed and encrypted" message is one where a signed message is
346 then encrypted. This can be produced by encrypting an already signed
347 message: see the examples section.
348
349 This version of the program only allows one signer per message but it
350 will verify multiple signers on received messages. Some S/MIME clients
351 choke if a message contains multiple signers. It is possible to sign
352 messages "in parallel" by signing an already signed message.
353
354 The options B<-encrypt> and B<-decrypt> reflect common usage in S/MIME
355 clients. Strictly speaking these process CMS enveloped data: CMS
356 encrypted data is used for other purposes.
357
358 The B<-resign> option uses an existing message digest when adding a new
359 signer. This means that attributes must be present in at least one existing
360 signer using the same message digest or this operation will fail.
361
362 The B<-stream> and B<-indef> options enable experimental streaming I/O support.
363 As a result the encoding is BER using indefinite length constructed encoding
364 and no longer DER. Streaming is supported for the B<-encrypt> operation and the
365 B<-sign> operation if the content is not detached.
366
367 Streaming is always used for the B<-sign> operation with detached data but
368 since the content is no longer part of the CMS structure the encoding
369 remains DER.
370
371 =head1 EXIT CODES
372
373 =over 4
374
375 =item 0
376
377 the operation was completely successfully.
378
379 =item 1 
380
381 an error occurred parsing the command options.
382
383 =item 2
384
385 one of the input files could not be read.
386
387 =item 3
388
389 an error occurred creating the CMS file or when reading the MIME
390 message.
391
392 =item 4
393
394 an error occurred decrypting or verifying the message.
395
396 =item 5
397
398 the message was verified correctly but an error occurred writing out
399 the signers certificates.
400
401 =back
402
403 =head1 COMPATIBILITY WITH PKCS#7 format.
404
405 The B<smime> utility can only process the older B<PKCS#7> format. The B<cms>
406 utility supports Cryptographic Message Syntax format. Use of some features
407 will result in messages which cannot be processed by applications which only
408 support the older format. These are detailed below.
409
410 The use of the B<-keyid> option with B<-sign> or B<-encrypt>.
411
412 The B<-outform PEM> option uses different headers.
413
414 The B<-compress> option.
415
416 The B<-secretkey> option when used with B<-encrypt>.
417
418 Additionally the B<-EncryptedData_create> and B<-data_create> type cannot
419 be processed by the older B<smime> command.
420
421 =head1 EXAMPLES
422
423 Create a cleartext signed message:
424
425  openssl cms -sign -in message.txt -text -out mail.msg \
426         -signer mycert.pem
427
428 Create an opaque signed message
429
430  openssl cms -sign -in message.txt -text -out mail.msg -nodetach \
431         -signer mycert.pem
432
433 Create a signed message, include some additional certificates and
434 read the private key from another file:
435
436  openssl cms -sign -in in.txt -text -out mail.msg \
437         -signer mycert.pem -inkey mykey.pem -certfile mycerts.pem
438
439 Create a signed message with two signers, use key identifier:
440
441  openssl cms -sign -in message.txt -text -out mail.msg \
442         -signer mycert.pem -signer othercert.pem -keyid
443
444 Send a signed message under Unix directly to sendmail, including headers:
445
446  openssl cms -sign -in in.txt -text -signer mycert.pem \
447         -from steve@openssl.org -to someone@somewhere \
448         -subject "Signed message" | sendmail someone@somewhere
449
450 Verify a message and extract the signer's certificate if successful:
451
452  openssl cms -verify -in mail.msg -signer user.pem -out signedtext.txt
453
454 Send encrypted mail using triple DES:
455
456  openssl cms -encrypt -in in.txt -from steve@openssl.org \
457         -to someone@somewhere -subject "Encrypted message" \
458         -des3 user.pem -out mail.msg
459
460 Sign and encrypt mail:
461
462  openssl cms -sign -in ml.txt -signer my.pem -text \
463         | openssl cms -encrypt -out mail.msg \
464         -from steve@openssl.org -to someone@somewhere \
465         -subject "Signed and Encrypted message" -des3 user.pem
466
467 Note: the encryption command does not include the B<-text> option because the
468 message being encrypted already has MIME headers.
469
470 Decrypt mail:
471
472  openssl cms -decrypt -in mail.msg -recip mycert.pem -inkey key.pem
473
474 The output from Netscape form signing is a PKCS#7 structure with the
475 detached signature format. You can use this program to verify the
476 signature by line wrapping the base64 encoded structure and surrounding
477 it with:
478
479  -----BEGIN PKCS7-----
480  -----END PKCS7-----
481
482 and using the command, 
483
484  openssl cms -verify -inform PEM -in signature.pem -content content.txt
485
486 alternatively you can base64 decode the signature and use
487
488  openssl cms -verify -inform DER -in signature.der -content content.txt
489
490 Create an encrypted message using 128 bit Camellia:
491
492  openssl cms -encrypt -in plain.txt -camellia128 -out mail.msg cert.pem
493
494 Add a signer to an existing message:
495
496  openssl cms -resign -in mail.msg -signer newsign.pem -out mail2.msg
497
498 =head1 BUGS
499
500 The MIME parser isn't very clever: it seems to handle most messages that I've
501 thrown at it but it may choke on others.
502
503 The code currently will only write out the signer's certificate to a file: if
504 the signer has a separate encryption certificate this must be manually
505 extracted. There should be some heuristic that determines the correct
506 encryption certificate.
507
508 Ideally a database should be maintained of a certificates for each email
509 address.
510
511 The code doesn't currently take note of the permitted symmetric encryption
512 algorithms as supplied in the SMIMECapabilities signed attribute. this means the
513 user has to manually include the correct encryption algorithm. It should store
514 the list of permitted ciphers in a database and only use those.
515
516 No revocation checking is done on the signer's certificate.
517
518 =head1 HISTORY
519
520 The use of multiple B<-signer> options and the B<-resign> command were first
521 added in OpenSSL 0.9.9
522
523
524 =cut