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