Deprecate unprefixed manual entries for openssl commands
[openssl.git] / doc / man1 / openssl-cms.pod
1 =pod
2
3 =head1 NAME
4
5 openssl-cms - CMS utility
6
7 =head1 SYNOPSIS
8
9 B<openssl> B<cms>
10 [B<-help>]
11 [B<-encrypt>]
12 [B<-decrypt>]
13 [B<-sign>]
14 [B<-verify>]
15 [B<-cmsout>]
16 [B<-resign>]
17 [B<-cades>]
18 [B<-data_create>]
19 [B<-data_out>]
20 [B<-digest_create>]
21 [B<-digest_verify>]
22 [B<-compress>]
23 [B<-uncompress>]
24 [B<-EncryptedData_encrypt>]
25 [B<-sign_receipt>]
26 [B<-verify_receipt receipt>]
27 [B<-in filename>]
28 [B<-inform SMIME|PEM|DER>]
29 [B<-rctform SMIME|PEM|DER>]
30 [B<-out filename>]
31 [B<-outform SMIME|PEM|DER>]
32 [B<-stream -indef -noindef>]
33 [B<-noindef>]
34 [B<-content filename>]
35 [B<-text>]
36 [B<-noout>]
37 [B<-print>]
38 [B<-CAfile file>]
39 [B<-CApath dir>]
40 [B<-no-CAfile>]
41 [B<-no-CApath>]
42 [B<-attime timestamp>]
43 [B<-check_ss_sig>]
44 [B<-crl_check>]
45 [B<-crl_check_all>]
46 [B<-explicit_policy>]
47 [B<-extended_crl>]
48 [B<-ignore_critical>]
49 [B<-inhibit_any>]
50 [B<-inhibit_map>]
51 [B<-no_check_time>]
52 [B<-partial_chain>]
53 [B<-policy arg>]
54 [B<-policy_check>]
55 [B<-policy_print>]
56 [B<-purpose purpose>]
57 [B<-suiteB_128>]
58 [B<-suiteB_128_only>]
59 [B<-suiteB_192>]
60 [B<-trusted_first>]
61 [B<-no_alt_chains>]
62 [B<-use_deltas>]
63 [B<-auth_level num>]
64 [B<-verify_depth num>]
65 [B<-verify_email email>]
66 [B<-verify_hostname hostname>]
67 [B<-verify_ip ip>]
68 [B<-verify_name name>]
69 [B<-x509_strict>]
70 [B<-md digest>]
71 [B<-I<cipher>>]
72 [B<-nointern>]
73 [B<-noverify>]
74 [B<-nocerts>]
75 [B<-noattr>]
76 [B<-nosmimecap>]
77 [B<-binary>]
78 [B<-crlfeol>]
79 [B<-asciicrlf>]
80 [B<-nodetach>]
81 [B<-certfile file>]
82 [B<-certsout file>]
83 [B<-signer file>]
84 [B<-recip file>]
85 [B<-keyid>]
86 [B<-receipt_request_all>]
87 [B<-receipt_request_first>]
88 [B<-receipt_request_from emailaddress>]
89 [B<-receipt_request_to emailaddress>]
90 [B<-receipt_request_print>]
91 [B<-secretkey key>]
92 [B<-secretkeyid id>]
93 [B<-econtent_type type>]
94 [B<-inkey file>]
95 [B<-keyopt name:parameter>]
96 [B<-passin arg>]
97 [B<-rand file...>]
98 [B<-writerand file>]
99 [B<cert.pem...>]
100 [B<-to addr>]
101 [B<-from addr>]
102 [B<-subject subj>]
103 [cert.pem]...
104
105 =head1 DESCRIPTION
106
107 The B<cms> command handles S/MIME v3.1 mail. It can encrypt, decrypt, sign and
108 verify, compress and uncompress S/MIME messages.
109
110 =head1 OPTIONS
111
112 There are fourteen operation options that set the type of operation to be
113 performed. The meaning of the other options varies according to the operation
114 type.
115
116 =over 4
117
118 =item B<-help>
119
120 Print out a usage message.
121
122 =item B<-encrypt>
123
124 Encrypt mail for the given recipient certificates. Input file is the message
125 to be encrypted. The output file is the encrypted mail in MIME format. The
126 actual CMS type is <B>EnvelopedData<B>.
127
128 Note that no revocation check is done for the recipient cert, so if that
129 key has been compromised, others may be able to decrypt the text.
130
131 =item B<-decrypt>
132
133 Decrypt mail using the supplied certificate and private key. Expects an
134 encrypted mail message in MIME format for the input file. The decrypted mail
135 is written to the output file.
136
137 =item B<-debug_decrypt>
138
139 This option sets the B<CMS_DEBUG_DECRYPT> flag. This option should be used
140 with caution: see the notes section below.
141
142 =item B<-sign>
143
144 Sign mail using the supplied certificate and private key. Input file is
145 the message to be signed. The signed message in MIME format is written
146 to the output file.
147
148 =item B<-verify>
149
150 Verify signed mail. Expects a signed mail message on input and outputs
151 the signed data. Both clear text and opaque signing is supported.
152
153 =item B<-cmsout>
154
155 Takes an input message and writes out a PEM encoded CMS structure.
156
157 =item B<-resign>
158
159 Resign a message: take an existing message and one or more new signers.
160
161 =item B<-cades>
162
163 Add an ESS signing-certificate or ESS signing-certificate-v2 signed-attribute to the SignerInfo, in order to make
164 the signature comply with the requirements for a CAdES Basic Electronic Signature (CAdES-BES). See the NOTES
165 section for more details.
166
167 =item B<-data_create>
168
169 Create a CMS B<Data> type.
170
171 =item B<-data_out>
172
173 B<Data> type and output the content.
174
175 =item B<-digest_create>
176
177 Create a CMS B<DigestedData> type.
178
179 =item B<-digest_verify>
180
181 Verify a CMS B<DigestedData> type and output the content.
182
183 =item B<-compress>
184
185 Create a CMS B<CompressedData> type. OpenSSL must be compiled with B<zlib>
186 support for this option to work, otherwise it will output an error.
187
188 =item B<-uncompress>
189
190 Uncompress a CMS B<CompressedData> type and output the content. OpenSSL must be
191 compiled with B<zlib> support for this option to work, otherwise it will
192 output an error.
193
194 =item B<-EncryptedData_encrypt>
195
196 Encrypt content using supplied symmetric key and algorithm using a CMS
197 B<EncryptedData> type and output the content.
198
199 =item B<-sign_receipt>
200
201 Generate and output a signed receipt for the supplied message. The input
202 message B<must> contain a signed receipt request. Functionality is otherwise
203 similar to the B<-sign> operation.
204
205 =item B<-verify_receipt receipt>
206
207 Verify a signed receipt in filename B<receipt>. The input message B<must>
208 contain the original receipt request. Functionality is otherwise similar
209 to the B<-verify> operation.
210
211 =item B<-in filename>
212
213 The input message to be encrypted or signed or the message to be decrypted
214 or verified.
215
216 =item B<-inform SMIME|PEM|DER>
217
218 This specifies the input format for the CMS structure. The default
219 is B<SMIME> which reads an S/MIME format message. B<PEM> and B<DER>
220 format change this to expect PEM and DER format CMS structures
221 instead. This currently only affects the input format of the CMS
222 structure, if no CMS structure is being input (for example with
223 B<-encrypt> or B<-sign>) this option has no effect.
224
225 =item B<-rctform SMIME|PEM|DER>
226
227 Specify the format for a signed receipt for use with the B<-receipt_verify>
228 operation.
229
230 =item B<-out filename>
231
232 The message text that has been decrypted or verified or the output MIME
233 format message that has been signed or verified.
234
235 =item B<-outform SMIME|PEM|DER>
236
237 This specifies the output format for the CMS structure. The default
238 is B<SMIME> which writes an S/MIME format message. B<PEM> and B<DER>
239 format change this to write PEM and DER format CMS structures
240 instead. This currently only affects the output format of the CMS
241 structure, if no CMS structure is being output (for example with
242 B<-verify> or B<-decrypt>) this option has no effect.
243
244 =item B<-stream -indef -noindef>
245
246 The B<-stream> and B<-indef> options are equivalent and enable streaming I/O
247 for encoding operations. This permits single pass processing of data without
248 the need to hold the entire contents in memory, potentially supporting very
249 large files. Streaming is automatically set for S/MIME signing with detached
250 data if the output format is B<SMIME> it is currently off by default for all
251 other operations.
252
253 =item B<-noindef>
254
255 Disable streaming I/O where it would produce and indefinite length constructed
256 encoding. This option currently has no effect. In future streaming will be
257 enabled by default on all relevant operations and this option will disable it.
258
259 =item B<-content filename>
260
261 This specifies a file containing the detached content, this is only
262 useful with the B<-verify> command. This is only usable if the CMS
263 structure is using the detached signature form where the content is
264 not included. This option will override any content if the input format
265 is S/MIME and it uses the multipart/signed MIME content type.
266
267 =item B<-text>
268
269 This option adds plain text (text/plain) MIME headers to the supplied
270 message if encrypting or signing. If decrypting or verifying it strips
271 off text headers: if the decrypted or verified message is not of MIME
272 type text/plain then an error occurs.
273
274 =item B<-noout>
275
276 For the B<-cmsout> operation do not output the parsed CMS structure. This
277 is useful when combined with the B<-print> option or if the syntax of the CMS
278 structure is being checked.
279
280 =item B<-print>
281
282 For the B<-cmsout> operation print out all fields of the CMS structure. This
283 is mainly useful for testing purposes.
284
285 =item B<-CAfile file>
286
287 A file containing trusted CA certificates, only used with B<-verify>.
288
289 =item B<-CApath dir>
290
291 A directory containing trusted CA certificates, only used with
292 B<-verify>. This directory must be a standard certificate directory: that
293 is a hash of each subject name (using B<x509 -hash>) should be linked
294 to each certificate.
295
296 =item B<-no-CAfile>
297
298 Do not load the trusted CA certificates from the default file location
299
300 =item B<-no-CApath>
301
302 Do not load the trusted CA certificates from the default directory location
303
304 =item B<-md digest>
305
306 Digest algorithm to use when signing or resigning. If not present then the
307 default digest algorithm for the signing key will be used (usually SHA1).
308
309 =item B<-I<cipher>>
310
311 The encryption algorithm to use. For example triple DES (168 bits) - B<-des3>
312 or 256 bit AES - B<-aes256>. Any standard algorithm name (as used by the
313 EVP_get_cipherbyname() function) can also be used preceded by a dash, for
314 example B<-aes-128-cbc>. See L<enc(1)> for a list of ciphers
315 supported by your version of OpenSSL.
316
317 If not specified triple DES is used. Only used with B<-encrypt> and
318 B<-EncryptedData_create> commands.
319
320 =item B<-nointern>
321
322 When verifying a message normally certificates (if any) included in
323 the message are searched for the signing certificate. With this option
324 only the certificates specified in the B<-certfile> option are used.
325 The supplied certificates can still be used as untrusted CAs however.
326
327 =item B<-noverify>
328
329 Do not verify the signers certificate of a signed message.
330
331 =item B<-nocerts>
332
333 When signing a message the signer's certificate is normally included
334 with this option it is excluded. This will reduce the size of the
335 signed message but the verifier must have a copy of the signers certificate
336 available locally (passed using the B<-certfile> option for example).
337
338 =item B<-noattr>
339
340 Normally when a message is signed a set of attributes are included which
341 include the signing time and supported symmetric algorithms. With this
342 option they are not included.
343
344 =item B<-nosmimecap>
345
346 Exclude the list of supported algorithms from signed attributes, other options
347 such as signing time and content type are still included.
348
349 =item B<-binary>
350
351 Normally the input message is converted to "canonical" format which is
352 effectively using CR and LF as end of line: as required by the S/MIME
353 specification. When this option is present no translation occurs. This
354 is useful when handling binary data which may not be in MIME format.
355
356 =item B<-crlfeol>
357
358 Normally the output file uses a single B<LF> as end of line. When this
359 option is present B<CRLF> is used instead.
360
361 =item B<-asciicrlf>
362
363 When signing use ASCII CRLF format canonicalisation. This strips trailing
364 whitespace from all lines, deletes trailing blank lines at EOF and sets
365 the encapsulated content type. This option is normally used with detached
366 content and an output signature format of DER. This option is not normally
367 needed when verifying as it is enabled automatically if the encapsulated
368 content format is detected.
369
370 =item B<-nodetach>
371
372 When signing a message use opaque signing: this form is more resistant
373 to translation by mail relays but it cannot be read by mail agents that
374 do not support S/MIME.  Without this option cleartext signing with
375 the MIME type multipart/signed is used.
376
377 =item B<-certfile file>
378
379 Allows additional certificates to be specified. When signing these will
380 be included with the message. When verifying these will be searched for
381 the signers certificates. The certificates should be in PEM format.
382
383 =item B<-certsout file>
384
385 Any certificates contained in the message are written to B<file>.
386
387 =item B<-signer file>
388
389 A signing certificate when signing or resigning a message, this option can be
390 used multiple times if more than one signer is required. If a message is being
391 verified then the signers certificates will be written to this file if the
392 verification was successful.
393
394 =item B<-recip file>
395
396 When decrypting a message this specifies the recipients certificate. The
397 certificate must match one of the recipients of the message or an error
398 occurs.
399
400 When encrypting a message this option may be used multiple times to specify
401 each recipient. This form B<must> be used if customised parameters are
402 required (for example to specify RSA-OAEP).
403
404 Only certificates carrying RSA, Diffie-Hellman or EC keys are supported by this
405 option.
406
407 =item B<-keyid>
408
409 Use subject key identifier to identify certificates instead of issuer name and
410 serial number. The supplied certificate B<must> include a subject key
411 identifier extension. Supported by B<-sign> and B<-encrypt> options.
412
413 =item B<-receipt_request_all>, B<-receipt_request_first>
414
415 For B<-sign> option include a signed receipt request. Indicate requests should
416 be provided by all recipient or first tier recipients (those mailed directly
417 and not from a mailing list). Ignored it B<-receipt_request_from> is included.
418
419 =item B<-receipt_request_from emailaddress>
420
421 For B<-sign> option include a signed receipt request. Add an explicit email
422 address where receipts should be supplied.
423
424 =item B<-receipt_request_to emailaddress>
425
426 Add an explicit email address where signed receipts should be sent to. This
427 option B<must> but supplied if a signed receipt it requested.
428
429 =item B<-receipt_request_print>
430
431 For the B<-verify> operation print out the contents of any signed receipt
432 requests.
433
434 =item B<-secretkey key>
435
436 Specify symmetric key to use. The key must be supplied in hex format and be
437 consistent with the algorithm used. Supported by the B<-EncryptedData_encrypt>
438 B<-EncryptedData_decrypt>, B<-encrypt> and B<-decrypt> options. When used
439 with B<-encrypt> or B<-decrypt> the supplied key is used to wrap or unwrap the
440 content encryption key using an AES key in the B<KEKRecipientInfo> type.
441
442 =item B<-secretkeyid id>
443
444 The key identifier for the supplied symmetric key for B<KEKRecipientInfo> type.
445 This option B<must> be present if the B<-secretkey> option is used with
446 B<-encrypt>. With B<-decrypt> operations the B<id> is used to locate the
447 relevant key if it is not supplied then an attempt is used to decrypt any
448 B<KEKRecipientInfo> structures.
449
450 =item B<-econtent_type type>
451
452 Set the encapsulated content type to B<type> if not supplied the B<Data> type
453 is used. The B<type> argument can be any valid OID name in either text or
454 numerical format.
455
456 =item B<-inkey file>
457
458 The private key to use when signing or decrypting. This must match the
459 corresponding certificate. If this option is not specified then the
460 private key must be included in the certificate file specified with
461 the B<-recip> or B<-signer> file. When signing this option can be used
462 multiple times to specify successive keys.
463
464 =item B<-keyopt name:opt>
465
466 For signing and encryption this option can be used multiple times to
467 set customised parameters for the preceding key or certificate. It can
468 currently be used to set RSA-PSS for signing, RSA-OAEP for encryption
469 or to modify default parameters for ECDH.
470
471 =item B<-passin arg>
472
473 The private key password source. For more information about the format of B<arg>
474 see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)>.
475
476 =item B<-rand file...>
477
478 A file or files containing random data used to seed the random number
479 generator.
480 Multiple files can be specified separated by an OS-dependent character.
481 The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
482 all others.
483
484 =item [B<-writerand file>]
485
486 Writes random data to the specified I<file> upon exit.
487 This can be used with a subsequent B<-rand> flag.
488
489 =item B<cert.pem...>
490
491 One or more certificates of message recipients: used when encrypting
492 a message.
493
494 =item B<-to, -from, -subject>
495
496 The relevant mail headers. These are included outside the signed
497 portion of a message so they may be included manually. If signing
498 then many S/MIME mail clients check the signers certificate's email
499 address matches that specified in the From: address.
500
501 =item B<-attime>, B<-check_ss_sig>, B<-crl_check>, B<-crl_check_all>,
502 B<-explicit_policy>, B<-extended_crl>, B<-ignore_critical>, B<-inhibit_any>,
503 B<-inhibit_map>, B<-no_alt_chains>, B<-no_check_time>, B<-partial_chain>, B<-policy>,
504 B<-policy_check>, B<-policy_print>, B<-purpose>, B<-suiteB_128>,
505 B<-suiteB_128_only>, B<-suiteB_192>, B<-trusted_first>, B<-use_deltas>,
506 B<-auth_level>, B<-verify_depth>, B<-verify_email>, B<-verify_hostname>,
507 B<-verify_ip>, B<-verify_name>, B<-x509_strict>
508
509 Set various certificate chain validation options. See the
510 L<verify(1)> manual page for details.
511
512 =back
513
514 =head1 NOTES
515
516 The MIME message must be sent without any blank lines between the
517 headers and the output. Some mail programs will automatically add
518 a blank line. Piping the mail directly to sendmail is one way to
519 achieve the correct format.
520
521 The supplied message to be signed or encrypted must include the
522 necessary MIME headers or many S/MIME clients won't display it
523 properly (if at all). You can use the B<-text> option to automatically
524 add plain text headers.
525
526 A "signed and encrypted" message is one where a signed message is
527 then encrypted. This can be produced by encrypting an already signed
528 message: see the examples section.
529
530 This version of the program only allows one signer per message but it
531 will verify multiple signers on received messages. Some S/MIME clients
532 choke if a message contains multiple signers. It is possible to sign
533 messages "in parallel" by signing an already signed message.
534
535 The options B<-encrypt> and B<-decrypt> reflect common usage in S/MIME
536 clients. Strictly speaking these process CMS enveloped data: CMS
537 encrypted data is used for other purposes.
538
539 The B<-resign> option uses an existing message digest when adding a new
540 signer. This means that attributes must be present in at least one existing
541 signer using the same message digest or this operation will fail.
542
543 The B<-stream> and B<-indef> options enable streaming I/O support.
544 As a result the encoding is BER using indefinite length constructed encoding
545 and no longer DER. Streaming is supported for the B<-encrypt> operation and the
546 B<-sign> operation if the content is not detached.
547
548 Streaming is always used for the B<-sign> operation with detached data but
549 since the content is no longer part of the CMS structure the encoding
550 remains DER.
551
552 If the B<-decrypt> option is used without a recipient certificate then an
553 attempt is made to locate the recipient by trying each potential recipient
554 in turn using the supplied private key. To thwart the MMA attack
555 (Bleichenbacher's attack on PKCS #1 v1.5 RSA padding) all recipients are
556 tried whether they succeed or not and if no recipients match the message
557 is "decrypted" using a random key which will typically output garbage.
558 The B<-debug_decrypt> option can be used to disable the MMA attack protection
559 and return an error if no recipient can be found: this option should be used
560 with caution. For a fuller description see L<CMS_decrypt(3)>).
561
562 =head1 CAdES Basic Electronic Signature (CAdES-BES)
563
564 A CAdES Basic Electronic Signature (CAdES-BES), as defined in the European Standard ETSI EN 319 122-1 V1.1.1, contains:
565
566 =over 4
567
568 =item *
569
570 The signed user data as defined in CMS (RFC 3852);
571
572 =item *
573
574 Content-type of the EncapsulatedContentInfo value being signed;
575
576 =item *
577
578 Message-digest of the eContent OCTET STRING within encapContentInfo being signed;
579
580 =item *
581
582 An ESS signing-certificate or ESS signing-certificate-v2 attribute, as defined in Enhanced Security Services (ESS), RFC 2634 and RFC 5035.
583 An ESS signing-certificate attribute only allows for the use of SHA-1 as a digest algorithm.
584 An ESS signing-certificate-v2 attribute allows for the use of any digest algorithm.
585
586 =item *
587
588 The digital signature value computed on the user data and, when present, on the signed attributes.
589
590 Note that currently the B<-cades> option applies only to the B<-sign> operation and is ignored during
591 the B<-verify> operation, i.e. the signing certification is not checked during the verification process.
592 This feature might be added in a future version.
593
594 =back
595
596 =head1 EXIT CODES
597
598 =over 4
599
600 =item Z<>0
601
602 The operation was completely successfully.
603
604 =item Z<>1
605
606 An error occurred parsing the command options.
607
608 =item Z<>2
609
610 One of the input files could not be read.
611
612 =item Z<>3
613
614 An error occurred creating the CMS file or when reading the MIME
615 message.
616
617 =item Z<>4
618
619 An error occurred decrypting or verifying the message.
620
621 =item Z<>5
622
623 The message was verified correctly but an error occurred writing out
624 the signers certificates.
625
626 =back
627
628 =head1 COMPATIBILITY WITH PKCS#7 format.
629
630 The B<smime> utility can only process the older B<PKCS#7> format. The B<cms>
631 utility supports Cryptographic Message Syntax format. Use of some features
632 will result in messages which cannot be processed by applications which only
633 support the older format. These are detailed below.
634
635 The use of the B<-keyid> option with B<-sign> or B<-encrypt>.
636
637 The B<-outform PEM> option uses different headers.
638
639 The B<-compress> option.
640
641 The B<-secretkey> option when used with B<-encrypt>.
642
643 The use of PSS with B<-sign>.
644
645 The use of OAEP or non-RSA keys with B<-encrypt>.
646
647 Additionally the B<-EncryptedData_create> and B<-data_create> type cannot
648 be processed by the older B<smime> command.
649
650 =head1 EXAMPLES
651
652 Create a cleartext signed message:
653
654  openssl cms -sign -in message.txt -text -out mail.msg \
655         -signer mycert.pem
656
657 Create an opaque signed message
658
659  openssl cms -sign -in message.txt -text -out mail.msg -nodetach \
660         -signer mycert.pem
661
662 Create a signed message, include some additional certificates and
663 read the private key from another file:
664
665  openssl cms -sign -in in.txt -text -out mail.msg \
666         -signer mycert.pem -inkey mykey.pem -certfile mycerts.pem
667
668 Create a signed message with two signers, use key identifier:
669
670  openssl cms -sign -in message.txt -text -out mail.msg \
671         -signer mycert.pem -signer othercert.pem -keyid
672
673 Send a signed message under Unix directly to sendmail, including headers:
674
675  openssl cms -sign -in in.txt -text -signer mycert.pem \
676         -from steve@openssl.org -to someone@somewhere \
677         -subject "Signed message" | sendmail someone@somewhere
678
679 Verify a message and extract the signer's certificate if successful:
680
681  openssl cms -verify -in mail.msg -signer user.pem -out signedtext.txt
682
683 Send encrypted mail using triple DES:
684
685  openssl cms -encrypt -in in.txt -from steve@openssl.org \
686         -to someone@somewhere -subject "Encrypted message" \
687         -des3 user.pem -out mail.msg
688
689 Sign and encrypt mail:
690
691  openssl cms -sign -in ml.txt -signer my.pem -text \
692         | openssl cms -encrypt -out mail.msg \
693         -from steve@openssl.org -to someone@somewhere \
694         -subject "Signed and Encrypted message" -des3 user.pem
695
696 Note: the encryption command does not include the B<-text> option because the
697 message being encrypted already has MIME headers.
698
699 Decrypt mail:
700
701  openssl cms -decrypt -in mail.msg -recip mycert.pem -inkey key.pem
702
703 The output from Netscape form signing is a PKCS#7 structure with the
704 detached signature format. You can use this program to verify the
705 signature by line wrapping the base64 encoded structure and surrounding
706 it with:
707
708  -----BEGIN PKCS7-----
709  -----END PKCS7-----
710
711 and using the command,
712
713  openssl cms -verify -inform PEM -in signature.pem -content content.txt
714
715 alternatively you can base64 decode the signature and use
716
717  openssl cms -verify -inform DER -in signature.der -content content.txt
718
719 Create an encrypted message using 128 bit Camellia:
720
721  openssl cms -encrypt -in plain.txt -camellia128 -out mail.msg cert.pem
722
723 Add a signer to an existing message:
724
725  openssl cms -resign -in mail.msg -signer newsign.pem -out mail2.msg
726
727 Sign mail using RSA-PSS:
728
729  openssl cms -sign -in message.txt -text -out mail.msg \
730         -signer mycert.pem -keyopt rsa_padding_mode:pss
731
732 Create encrypted mail using RSA-OAEP:
733
734  openssl cms -encrypt -in plain.txt -out mail.msg \
735         -recip cert.pem -keyopt rsa_padding_mode:oaep
736
737 Use SHA256 KDF with an ECDH certificate:
738
739  openssl cms -encrypt -in plain.txt -out mail.msg \
740         -recip ecdhcert.pem -keyopt ecdh_kdf_md:sha256
741
742 =head1 BUGS
743
744 The MIME parser isn't very clever: it seems to handle most messages that I've
745 thrown at it but it may choke on others.
746
747 The code currently will only write out the signer's certificate to a file: if
748 the signer has a separate encryption certificate this must be manually
749 extracted. There should be some heuristic that determines the correct
750 encryption certificate.
751
752 Ideally a database should be maintained of a certificates for each email
753 address.
754
755 The code doesn't currently take note of the permitted symmetric encryption
756 algorithms as supplied in the SMIMECapabilities signed attribute. this means the
757 user has to manually include the correct encryption algorithm. It should store
758 the list of permitted ciphers in a database and only use those.
759
760 No revocation checking is done on the signer's certificate.
761
762 =head1 HISTORY
763
764 The use of multiple B<-signer> options and the B<-resign> command were first
765 added in OpenSSL 1.0.0.
766
767 The B<keyopt> option was added in OpenSSL 1.0.2.
768
769 Support for RSA-OAEP and RSA-PSS was added in OpenSSL 1.0.2.
770
771 The use of non-RSA keys with B<-encrypt> and B<-decrypt>
772 was added in OpenSSL 1.0.2.
773
774 The -no_alt_chains option was added in OpenSSL 1.0.2b.
775
776 =head1 COPYRIGHT
777
778 Copyright 2008-2019 The OpenSSL Project Authors. All Rights Reserved.
779
780 Licensed under the Apache License 2.0 (the "License").  You may not use
781 this file except in compliance with the License.  You can obtain a copy
782 in the file LICENSE in the source distribution or at
783 L<https://www.openssl.org/source/license.html>.
784
785 =cut