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