openssl-smime.pod.in 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494
  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<-nocerts>
  177. Don't include signers certificate when signing.
  178. =item B<-noattr>
  179. Don't include any signed attributes when signing.
  180. =item B<-recip> I<file>
  181. The recipients certificate when decrypting a message. This certificate
  182. must match one of the recipients of the message or an error occurs.
  183. =item B<-inkey> I<filename>|I<uri>
  184. The private key to use when signing or decrypting. This must match the
  185. corresponding certificate. If this option is not specified then the
  186. private key must be included in the certificate file specified with
  187. the B<-recip> or B<-signer> file. When signing this option can be used
  188. multiple times to specify successive keys.
  189. =item B<-passin> I<arg>
  190. The private key password source. For more information about the format of I<arg>
  191. see L<openssl-passphrase-options(1)>.
  192. =item B<-to>, B<-from>, B<-subject>
  193. The relevant mail headers. These are included outside the signed
  194. portion of a message so they may be included manually. If signing
  195. then many S/MIME mail clients check the signers certificate's email
  196. address matches that specified in the From: address.
  197. {- $OpenSSL::safe::opt_v_item -}
  198. Any verification errors cause the command to exit.
  199. {- $OpenSSL::safe::opt_trust_item -}
  200. {- $OpenSSL::safe::opt_engine_item -}
  201. {- $OpenSSL::safe::opt_r_item -}
  202. {- $OpenSSL::safe::opt_provider_item -}
  203. {- $OpenSSL::safe::opt_config_item -}
  204. =item I<recipcert> ...
  205. One or more certificates of message recipients, used when encrypting
  206. a message.
  207. =back
  208. =head1 NOTES
  209. The MIME message must be sent without any blank lines between the
  210. headers and the output. Some mail programs will automatically add
  211. a blank line. Piping the mail directly to sendmail is one way to
  212. achieve the correct format.
  213. The supplied message to be signed or encrypted must include the
  214. necessary MIME headers or many S/MIME clients won't display it
  215. properly (if at all). You can use the B<-text> option to automatically
  216. add plain text headers.
  217. A "signed and encrypted" message is one where a signed message is
  218. then encrypted. This can be produced by encrypting an already signed
  219. message: see the examples section.
  220. This version of the program only allows one signer per message but it
  221. will verify multiple signers on received messages. Some S/MIME clients
  222. choke if a message contains multiple signers. It is possible to sign
  223. messages "in parallel" by signing an already signed message.
  224. The options B<-encrypt> and B<-decrypt> reflect common usage in S/MIME
  225. clients. Strictly speaking these process PKCS#7 enveloped data: PKCS#7
  226. encrypted data is used for other purposes.
  227. The B<-resign> option uses an existing message digest when adding a new
  228. signer. This means that attributes must be present in at least one existing
  229. signer using the same message digest or this operation will fail.
  230. The B<-stream> and B<-indef> options enable streaming I/O support.
  231. As a result the encoding is BER using indefinite length constructed encoding
  232. and no longer DER. Streaming is supported for the B<-encrypt> operation and the
  233. B<-sign> operation if the content is not detached.
  234. Streaming is always used for the B<-sign> operation with detached data but
  235. since the content is no longer part of the PKCS#7 structure the encoding
  236. remains DER.
  237. =head1 EXIT CODES
  238. =over 4
  239. =item Z<>0
  240. The operation was completely successfully.
  241. =item Z<>1
  242. An error occurred parsing the command options.
  243. =item Z<>2
  244. One of the input files could not be read.
  245. =item Z<>3
  246. An error occurred creating the PKCS#7 file or when reading the MIME
  247. message.
  248. =item Z<>4
  249. An error occurred decrypting or verifying the message.
  250. =item Z<>5
  251. The message was verified correctly but an error occurred writing out
  252. the signers certificates.
  253. =back
  254. =head1 EXAMPLES
  255. Create a cleartext signed message:
  256. openssl smime -sign -in message.txt -text -out mail.msg \
  257. -signer mycert.pem
  258. Create an opaque signed message:
  259. openssl smime -sign -in message.txt -text -out mail.msg -nodetach \
  260. -signer mycert.pem
  261. Create a signed message, include some additional certificates and
  262. read the private key from another file:
  263. openssl smime -sign -in in.txt -text -out mail.msg \
  264. -signer mycert.pem -inkey mykey.pem -certfile mycerts.pem
  265. Create a signed message with two signers:
  266. openssl smime -sign -in message.txt -text -out mail.msg \
  267. -signer mycert.pem -signer othercert.pem
  268. Send a signed message under Unix directly to sendmail, including headers:
  269. openssl smime -sign -in in.txt -text -signer mycert.pem \
  270. -from steve@openssl.org -to someone@somewhere \
  271. -subject "Signed message" | sendmail someone@somewhere
  272. Verify a message and extract the signer's certificate if successful:
  273. openssl smime -verify -in mail.msg -signer user.pem -out signedtext.txt
  274. Send encrypted mail using triple DES:
  275. openssl smime -encrypt -in in.txt -from steve@openssl.org \
  276. -to someone@somewhere -subject "Encrypted message" \
  277. -des3 user.pem -out mail.msg
  278. Sign and encrypt mail:
  279. openssl smime -sign -in ml.txt -signer my.pem -text \
  280. | openssl smime -encrypt -out mail.msg \
  281. -from steve@openssl.org -to someone@somewhere \
  282. -subject "Signed and Encrypted message" -des3 user.pem
  283. Note: the encryption command does not include the B<-text> option because the
  284. message being encrypted already has MIME headers.
  285. Decrypt mail:
  286. openssl smime -decrypt -in mail.msg -recip mycert.pem -inkey key.pem
  287. The output from Netscape form signing is a PKCS#7 structure with the
  288. detached signature format. You can use this program to verify the
  289. signature by line wrapping the base64 encoded structure and surrounding
  290. it with:
  291. -----BEGIN PKCS7-----
  292. -----END PKCS7-----
  293. and using the command:
  294. openssl smime -verify -inform PEM -in signature.pem -content content.txt
  295. Alternatively you can base64 decode the signature and use:
  296. openssl smime -verify -inform DER -in signature.der -content content.txt
  297. Create an encrypted message using 128 bit Camellia:
  298. openssl smime -encrypt -in plain.txt -camellia128 -out mail.msg cert.pem
  299. Add a signer to an existing message:
  300. openssl smime -resign -in mail.msg -signer newsign.pem -out mail2.msg
  301. =head1 BUGS
  302. The MIME parser isn't very clever: it seems to handle most messages that I've
  303. thrown at it but it may choke on others.
  304. The code currently will only write out the signer's certificate to a file: if
  305. the signer has a separate encryption certificate this must be manually
  306. extracted. There should be some heuristic that determines the correct
  307. encryption certificate.
  308. Ideally a database should be maintained of a certificates for each email
  309. address.
  310. The code doesn't currently take note of the permitted symmetric encryption
  311. algorithms as supplied in the SMIMECapabilities signed attribute. This means the
  312. user has to manually include the correct encryption algorithm. It should store
  313. the list of permitted ciphers in a database and only use those.
  314. No revocation checking is done on the signer's certificate.
  315. The current code can only handle S/MIME v2 messages, the more complex S/MIME v3
  316. structures may cause parsing errors.
  317. =head1 SEE ALSO
  318. L<ossl_store-file(7)>
  319. =head1 HISTORY
  320. The use of multiple B<-signer> options and the B<-resign> command were first
  321. added in OpenSSL 1.0.0
  322. The -no_alt_chains option was added in OpenSSL 1.1.0.
  323. The B<-engine> option was deprecated in OpenSSL 3.0.
  324. =head1 COPYRIGHT
  325. Copyright 2000-2023 The OpenSSL Project Authors. All Rights Reserved.
  326. Licensed under the Apache License 2.0 (the "License"). You may not use
  327. this file except in compliance with the License. You can obtain a copy
  328. in the file LICENSE in the source distribution or at
  329. L<https://www.openssl.org/source/license.html>.
  330. =cut