openssl-smime.pod.in 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502
  1. =pod
  2. =begin comment
  3. {- join("\n", @autowarntext) -}
  4. =end comment
  5. =head1 NAME
  6. openssl-smime - S/MIME utility
  7. =head1 SYNOPSIS
  8. B<openssl> B<smime>
  9. [B<-help>]
  10. [B<-encrypt>]
  11. [B<-decrypt>]
  12. [B<-sign>]
  13. [B<-resign>]
  14. [B<-verify>]
  15. [B<-pk7out>]
  16. [B<-binary>]
  17. [B<-crlfeol>]
  18. [B<-I<cipher>>]
  19. [B<-in> I<file>]
  20. [B<-attime> I<timestamp>]
  21. [B<-check_ss_sig>]
  22. [B<-crl_check>]
  23. [B<-crl_check_all>]
  24. [B<-explicit_policy>]
  25. [B<-extended_crl>]
  26. [B<-ignore_critical>]
  27. [B<-inhibit_any>]
  28. [B<-inhibit_map>]
  29. [B<-partial_chain>]
  30. [B<-policy> I<arg>]
  31. [B<-policy_check>]
  32. [B<-policy_print>]
  33. [B<-purpose> I<purpose>]
  34. [B<-suiteB_128>]
  35. [B<-suiteB_128_only>]
  36. [B<-suiteB_192>]
  37. [B<-trusted_first>]
  38. [B<-no_alt_chains>]
  39. [B<-use_deltas>]
  40. [B<-auth_level> I<num>]
  41. [B<-verify_depth> I<num>]
  42. [B<-verify_email> I<email>]
  43. [B<-verify_hostname> I<hostname>]
  44. [B<-verify_ip> I<ip>]
  45. [B<-verify_name> I<name>]
  46. [B<-x509_strict>]
  47. [B<-certfile> I<file>]
  48. [B<-signer> I<file>]
  49. [B<-recip> I< file>]
  50. [B<-inform> B<DER>|B<PEM>|B<SMIME>]
  51. [B<-outform> B<DER>|B<PEM>|B<SMIME>]
  52. [B<-keyform> B<DER>|B<PEM>|B<ENGINE>]
  53. [B<-passin> I<arg>]
  54. [B<-inkey> I<file_or_id>]
  55. [B<-out> I<file>]
  56. [B<-content> I<file>]
  57. [B<-to> I<addr>]
  58. [B<-from> I<ad>]
  59. [B<-subject> I<s>]
  60. [B<-text>]
  61. [B<-indef>]
  62. [B<-noindef>]
  63. [B<-stream>]
  64. [B<-md> I<digest>]
  65. {- $OpenSSL::safe::opt_trust_synopsis -}
  66. {- $OpenSSL::safe::opt_r_synopsis -}
  67. I<cert.pem> ...
  68. =for openssl ifdef engine
  69. =head1 DESCRIPTION
  70. This command handles S/MIME mail. It can encrypt, decrypt, sign
  71. and verify S/MIME messages.
  72. =head1 OPTIONS
  73. There are six operation options that set the type of operation to be performed.
  74. The meaning of the other options varies according to the operation type.
  75. =over 4
  76. =item B<-help>
  77. Print out a usage message.
  78. =item B<-encrypt>
  79. Encrypt mail for the given recipient certificates. Input file is the message
  80. to be encrypted. The output file is the encrypted mail in MIME format.
  81. Note that no revocation check is done for the recipient cert, so if that
  82. key has been compromised, others may be able to decrypt the text.
  83. =item B<-decrypt>
  84. Decrypt mail using the supplied certificate and private key. Expects an
  85. encrypted mail message in MIME format for the input file. The decrypted mail
  86. is written to the output file.
  87. =item B<-sign>
  88. Sign mail using the supplied certificate and private key. Input file is
  89. the message to be signed. The signed message in MIME format is written
  90. to the output file.
  91. =item B<-verify>
  92. Verify signed mail. Expects a signed mail message on input and outputs
  93. the signed data. Both clear text and opaque signing is supported.
  94. =item B<-pk7out>
  95. Takes an input message and writes out a PEM encoded PKCS#7 structure.
  96. =item B<-resign>
  97. Resign a message: take an existing message and one or more new signers.
  98. =item B<-in> I<filename>
  99. The input message to be encrypted or signed or the MIME message to
  100. be decrypted or verified.
  101. =item B<-out> I<filename>
  102. The message text that has been decrypted or verified or the output MIME
  103. format message that has been signed or verified.
  104. =item B<-inform> B<DER>|B<PEM>|B<SMIME>
  105. The input format of the PKCS#7 (S/MIME) structure (if one is being read);
  106. the default is B<SMIME>.
  107. See L<openssl(1)/Format Options> for details.
  108. =item B<-outform> B<DER>|B<PEM>|B<SMIME>
  109. The output format of the PKCS#7 (S/MIME) structure (if one is being written);
  110. the default is B<SMIME>.
  111. See L<openssl(1)/Format Options> for details.
  112. =item B<-keyform> B<DER>|B<PEM>
  113. The key format; the default is B<PEM>.
  114. See L<openssl(1)/Format Options> for details.
  115. =item B<-stream>, B<-indef>, B<-noindef>
  116. The B<-stream> and B<-indef> options are equivalent and enable streaming I/O
  117. for encoding operations. This permits single pass processing of data without
  118. the need to hold the entire contents in memory, potentially supporting very
  119. large files. Streaming is automatically set for S/MIME signing with detached
  120. data if the output format is B<SMIME> it is currently off by default for all
  121. other operations.
  122. =item B<-noindef>
  123. Disable streaming I/O where it would produce and indefinite length constructed
  124. encoding. This option currently has no effect. In future streaming will be
  125. enabled by default on all relevant operations and this option will disable it.
  126. =item B<-content> I<filename>
  127. This specifies a file containing the detached content, this is only
  128. useful with the B<-verify> command. This is only usable if the PKCS#7
  129. structure is using the detached signature form where the content is
  130. not included. This option will override any content if the input format
  131. is S/MIME and it uses the multipart/signed MIME content type.
  132. =item B<-text>
  133. This option adds plain text (text/plain) MIME headers to the supplied
  134. message if encrypting or signing. If decrypting or verifying it strips
  135. off text headers: if the decrypted or verified message is not of MIME
  136. type text/plain then an error occurs.
  137. =item B<-md> I<digest>
  138. Digest algorithm to use when signing or resigning. If not present then the
  139. default digest algorithm for the signing key will be used (usually SHA1).
  140. =item B<-I<cipher>>
  141. The encryption algorithm to use. For example DES (56 bits) - B<-des>,
  142. triple DES (168 bits) - B<-des3>,
  143. EVP_get_cipherbyname() function) can also be used preceded by a dash, for
  144. example B<-aes-128-cbc>. See L<openssl-enc(1)> for list of ciphers
  145. supported by your version of OpenSSL.
  146. If not specified triple DES is used. Only used with B<-encrypt>.
  147. =item B<-nointern>
  148. When verifying a message normally certificates (if any) included in
  149. the message are searched for the signing certificate. With this option
  150. only the certificates specified in the B<-certfile> option are used.
  151. The supplied certificates can still be used as untrusted CAs however.
  152. =item B<-noverify>
  153. Do not verify the signers certificate of a signed message.
  154. =item B<-nochain>
  155. Do not do chain verification of signers certificates: that is don't
  156. use the certificates in the signed message as untrusted CAs.
  157. =item B<-nosigs>
  158. Don't try to verify the signatures on the message.
  159. =item B<-nocerts>
  160. When signing a message the signer's certificate is normally included
  161. with this option it is excluded. This will reduce the size of the
  162. signed message but the verifier must have a copy of the signers certificate
  163. available locally (passed using the B<-certfile> option for example).
  164. =item B<-noattr>
  165. Normally when a message is signed a set of attributes are included which
  166. include the signing time and supported symmetric algorithms. With this
  167. option they are not included.
  168. =item B<-binary>
  169. Normally the input message is converted to "canonical" format which is
  170. effectively using CR and LF as end of line: as required by the S/MIME
  171. specification. When this option is present no translation occurs. This
  172. is useful when handling binary data which may not be in MIME format.
  173. =item B<-crlfeol>
  174. Normally the output file uses a single B<LF> as end of line. When this
  175. option is present B<CRLF> is used instead.
  176. =item B<-nodetach>
  177. When signing a message use opaque signing: this form is more resistant
  178. to translation by mail relays but it cannot be read by mail agents that
  179. do not support S/MIME. Without this option cleartext signing with
  180. the MIME type multipart/signed is used.
  181. =item B<-certfile> I<file>
  182. Allows additional certificates to be specified. When signing these will
  183. be included with the message. When verifying these will be searched for
  184. the signers certificates. The certificates should be in PEM format.
  185. =item B<-signer> I<file>
  186. A signing certificate when signing or resigning a message, this option can be
  187. used multiple times if more than one signer is required. If a message is being
  188. verified then the signers certificates will be written to this file if the
  189. verification was successful.
  190. =item B<-recip> I<file>
  191. The recipients certificate when decrypting a message. This certificate
  192. must match one of the recipients of the message or an error occurs.
  193. =item B<-inkey> I<file_or_id>
  194. The private key to use when signing or decrypting. This must match the
  195. corresponding certificate. If this option is not specified then the
  196. private key must be included in the certificate file specified with
  197. the B<-recip> or B<-signer> file. When signing this option can be used
  198. multiple times to specify successive keys.
  199. If no engine is used, the argument is taken as a file; if an engine is
  200. specified, the argument is given to the engine as a key identifier.
  201. =item B<-passin> I<arg>
  202. The private key password source. For more information about the format of I<arg>
  203. see L<openssl(1)/Pass Phrase Options>.
  204. =item B<-to>, B<-from>, B<-subject>
  205. The relevant mail headers. These are included outside the signed
  206. portion of a message so they may be included manually. If signing
  207. then many S/MIME mail clients check the signers certificate's email
  208. address matches that specified in the From: address.
  209. =item B<-attime>, B<-check_ss_sig>, B<-crl_check>, B<-crl_check_all>,
  210. B<-explicit_policy>, B<-extended_crl>, B<-ignore_critical>, B<-inhibit_any>,
  211. B<-inhibit_map>, B<-no_alt_chains>, B<-partial_chain>, B<-policy>,
  212. B<-policy_check>, B<-policy_print>, B<-purpose>, B<-suiteB_128>,
  213. B<-suiteB_128_only>, B<-suiteB_192>, B<-trusted_first>, B<-use_deltas>,
  214. B<-auth_level>, B<-verify_depth>, B<-verify_email>, B<-verify_hostname>,
  215. B<-verify_ip>, B<-verify_name>, B<-x509_strict>
  216. Set various options of certificate chain verification. See
  217. L<openssl-verify(1)> manual page for details.
  218. {- $OpenSSL::safe::opt_trust_item -}
  219. {- $OpenSSL::safe::opt_r_item -}
  220. =item I<cert.pem> ...
  221. One or more certificates of message recipients, used when encrypting
  222. a message.
  223. =back
  224. =head1 NOTES
  225. The MIME message must be sent without any blank lines between the
  226. headers and the output. Some mail programs will automatically add
  227. a blank line. Piping the mail directly to sendmail is one way to
  228. achieve the correct format.
  229. The supplied message to be signed or encrypted must include the
  230. necessary MIME headers or many S/MIME clients won't display it
  231. properly (if at all). You can use the B<-text> option to automatically
  232. add plain text headers.
  233. A "signed and encrypted" message is one where a signed message is
  234. then encrypted. This can be produced by encrypting an already signed
  235. message: see the examples section.
  236. This version of the program only allows one signer per message but it
  237. will verify multiple signers on received messages. Some S/MIME clients
  238. choke if a message contains multiple signers. It is possible to sign
  239. messages "in parallel" by signing an already signed message.
  240. The options B<-encrypt> and B<-decrypt> reflect common usage in S/MIME
  241. clients. Strictly speaking these process PKCS#7 enveloped data: PKCS#7
  242. encrypted data is used for other purposes.
  243. The B<-resign> option uses an existing message digest when adding a new
  244. signer. This means that attributes must be present in at least one existing
  245. signer using the same message digest or this operation will fail.
  246. The B<-stream> and B<-indef> options enable streaming I/O support.
  247. As a result the encoding is BER using indefinite length constructed encoding
  248. and no longer DER. Streaming is supported for the B<-encrypt> operation and the
  249. B<-sign> operation if the content is not detached.
  250. Streaming is always used for the B<-sign> operation with detached data but
  251. since the content is no longer part of the PKCS#7 structure the encoding
  252. remains DER.
  253. =head1 EXIT CODES
  254. =over 4
  255. =item Z<>0
  256. The operation was completely successfully.
  257. =item Z<>1
  258. An error occurred parsing the command options.
  259. =item Z<>2
  260. One of the input files could not be read.
  261. =item Z<>3
  262. An error occurred creating the PKCS#7 file or when reading the MIME
  263. message.
  264. =item Z<>4
  265. An error occurred decrypting or verifying the message.
  266. =item Z<>5
  267. The message was verified correctly but an error occurred writing out
  268. the signers certificates.
  269. =back
  270. =head1 EXAMPLES
  271. Create a cleartext signed message:
  272. openssl smime -sign -in message.txt -text -out mail.msg \
  273. -signer mycert.pem
  274. Create an opaque signed message:
  275. openssl smime -sign -in message.txt -text -out mail.msg -nodetach \
  276. -signer mycert.pem
  277. Create a signed message, include some additional certificates and
  278. read the private key from another file:
  279. openssl smime -sign -in in.txt -text -out mail.msg \
  280. -signer mycert.pem -inkey mykey.pem -certfile mycerts.pem
  281. Create a signed message with two signers:
  282. openssl smime -sign -in message.txt -text -out mail.msg \
  283. -signer mycert.pem -signer othercert.pem
  284. Send a signed message under Unix directly to sendmail, including headers:
  285. openssl smime -sign -in in.txt -text -signer mycert.pem \
  286. -from steve@openssl.org -to someone@somewhere \
  287. -subject "Signed message" | sendmail someone@somewhere
  288. Verify a message and extract the signer's certificate if successful:
  289. openssl smime -verify -in mail.msg -signer user.pem -out signedtext.txt
  290. Send encrypted mail using triple DES:
  291. openssl smime -encrypt -in in.txt -from steve@openssl.org \
  292. -to someone@somewhere -subject "Encrypted message" \
  293. -des3 user.pem -out mail.msg
  294. Sign and encrypt mail:
  295. openssl smime -sign -in ml.txt -signer my.pem -text \
  296. | openssl smime -encrypt -out mail.msg \
  297. -from steve@openssl.org -to someone@somewhere \
  298. -subject "Signed and Encrypted message" -des3 user.pem
  299. Note: the encryption command does not include the B<-text> option because the
  300. message being encrypted already has MIME headers.
  301. Decrypt mail:
  302. openssl smime -decrypt -in mail.msg -recip mycert.pem -inkey key.pem
  303. The output from Netscape form signing is a PKCS#7 structure with the
  304. detached signature format. You can use this program to verify the
  305. signature by line wrapping the base64 encoded structure and surrounding
  306. it with:
  307. -----BEGIN PKCS7-----
  308. -----END PKCS7-----
  309. and using the command:
  310. openssl smime -verify -inform PEM -in signature.pem -content content.txt
  311. Alternatively you can base64 decode the signature and use:
  312. openssl smime -verify -inform DER -in signature.der -content content.txt
  313. Create an encrypted message using 128 bit Camellia:
  314. openssl smime -encrypt -in plain.txt -camellia128 -out mail.msg cert.pem
  315. Add a signer to an existing message:
  316. openssl smime -resign -in mail.msg -signer newsign.pem -out mail2.msg
  317. =head1 BUGS
  318. The MIME parser isn't very clever: it seems to handle most messages that I've
  319. thrown at it but it may choke on others.
  320. The code currently will only write out the signer's certificate to a file: if
  321. the signer has a separate encryption certificate this must be manually
  322. extracted. There should be some heuristic that determines the correct
  323. encryption certificate.
  324. Ideally a database should be maintained of a certificates for each email
  325. address.
  326. The code doesn't currently take note of the permitted symmetric encryption
  327. algorithms as supplied in the SMIMECapabilities signed attribute. This means the
  328. user has to manually include the correct encryption algorithm. It should store
  329. the list of permitted ciphers in a database and only use those.
  330. No revocation checking is done on the signer's certificate.
  331. The current code can only handle S/MIME v2 messages, the more complex S/MIME v3
  332. structures may cause parsing errors.
  333. =head1 SEE ALSO
  334. L<ossl_store-file(7)>
  335. =head1 HISTORY
  336. The use of multiple B<-signer> options and the B<-resign> command were first
  337. added in OpenSSL 1.0.0
  338. The -no_alt_chains option was added in OpenSSL 1.1.0.
  339. =head1 COPYRIGHT
  340. Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.
  341. Licensed under the Apache License 2.0 (the "License"). You may not use
  342. this file except in compliance with the License. You can obtain a copy
  343. in the file LICENSE in the source distribution or at
  344. L<https://www.openssl.org/source/license.html>.
  345. =cut