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