openssl-smime.pod.in 15 KB

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