rfc3156-openpgp.txt
上传用户:knt0001
上传日期:2022-01-28
资源大小:264k
文件大小:26k
源码类别:

Email客户端

开发平台:

C/C++

  1.                        MIME Security with OpenPGP
  2. Status of this Memo
  3.    This document specifies an Internet standards track protocol for the
  4.    Internet community, and requests discussion and suggestions for
  5.    improvements.  Please refer to the current edition of the "Internet
  6.    Official Protocol Standards" (STD 1) for the standardization state
  7.    and status of this protocol.  Distribution of this memo is unlimited.
  8. Copyright Notice
  9.    Copyright (C) The Internet Society (2001).  All Rights Reserved.
  10. Abstract
  11.    This document describes how the OpenPGP Message Format can be used to
  12.    provide privacy and authentication using the Multipurpose Internet
  13.    Mail Extensions (MIME) security content types described in RFC 1847.
  14. 1. Introduction
  15.    Work on integrating PGP (Pretty Good Privacy) with MIME [3]
  16.    (including the since withdrawn "application/pgp" content type) prior
  17.    to RFC 2015 suffered from a number of problems, the most significant
  18.    of which is the inability to recover signed message bodies without
  19.    parsing data structures specific to PGP.  RFC 2015 makes use of the
  20.    elegant solution proposed in RFC 1847, which defines security
  21.    multipart formats for MIME.  The security multiparts clearly separate
  22.    the signed message body from the signature, and have a number of
  23.    other desirable properties.  This document revises RFC 2015 to adopt
  24.    the integration of PGP and MIME to the needs which emerged during the
  25.    work on the OpenPGP specification.
  26.    This document defines three content types for implementing security
  27.    and privacy with OpenPGP: "application/pgp-encrypted",
  28.    "application/pgp-signature" and "application/pgp-keys".
  29. Elkins, et al.              Standards Track                     [Page 1]
  30. RFC 3156               MIME Security with OpenPGP            August 2001
  31.    The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
  32.    "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
  33.    document are to be interpreted as described in RFC 2119.
  34. 2. OpenPGP data formats
  35.    OpenPGP implementations can generate either ASCII armor (described in
  36.    [1]) or 8-bit binary output when encrypting data, generating a
  37.    digital signature, or extracting public key data.  The ASCII armor
  38.    output is the REQUIRED method for data transfer.  This allows those
  39.    users who do not have the means to interpret the formats described in
  40.    this document to be able to extract and use the OpenPGP information
  41.    in the message.
  42.    When the amount of data to be transmitted requires that it be sent in
  43.    many parts, the MIME message/partial mechanism SHOULD be used rather
  44.    than the multi-part ASCII armor OpenPGP format.
  45. 3. Content-Transfer-Encoding restrictions
  46.    Multipart/signed and multipart/encrypted are to be treated by agents
  47.    as opaque, meaning that the data is not to be altered in any way [2],
  48.    [7].  However, many existing mail gateways will detect if the next
  49.    hop does not support MIME or 8-bit data and perform conversion to
  50.    either Quoted-Printable or Base64.  This presents serious problems
  51.    for multipart/signed, in particular, where the signature is
  52.    invalidated when such an operation occurs.  For this reason all data
  53.    signed according to this protocol MUST be constrained to 7 bits (8-
  54.    bit data MUST be encoded using either Quoted-Printable or Base64).
  55.    Note that this also includes the case where a signed object is also
  56.    encrypted (see section 6).  This restriction will increase the
  57.    likelihood that the signature will be valid upon receipt.
  58.    Additionally, implementations MUST make sure that no trailing
  59.    whitespace is present after the MIME encoding has been applied.
  60.       Note: In most cases, trailing whitespace can either be removed, or
  61.       protected by applying an appropriate content-transfer-encoding.
  62.       However, special care must be taken when any header lines - either
  63.       in MIME entity headers, or in embedded RFC 822 headers - are
  64.       present which only consist of whitespace: Such lines must be
  65.       removed entirely, since replacing them by empty lines would turn
  66.       them into header delimiters, and change the semantics of the
  67.       message.  The restrictions on whitespace are necessary in order to
  68.       make the hash calculated invariant under the text and binary mode
  69.       signature mechanisms provided by OpenPGP [1].  Also, they help to
  70.       avoid compatibility problems with PGP implementations which
  71.       predate the OpenPGP specification.
  72. Elkins, et al.              Standards Track                     [Page 2]
  73. RFC 3156               MIME Security with OpenPGP            August 2001
  74.       Note: If any line begins with the string "From ", it is strongly
  75.       suggested that either the Quoted-Printable or Base64 MIME encoding
  76.       be applied.  If Quoted-Printable is used, at least one of the
  77.       characters in the string should be encoded using the hexadecimal
  78.       coding rule.  This is because many mail transfer and delivery
  79.       agents treat "From " (the word "from" followed immediately by a
  80.       space character) as the start of a new message and thus insert a
  81.       right angle-bracket (>) in front of any line beginning with
  82.       "From " to distinguish this case, invalidating the signature.
  83.    Data that is ONLY to be encrypted is allowed to contain 8-bit
  84.    characters and trailing whitespace and therefore need not undergo the
  85.    conversion to a 7bit format, and the stripping of whitespace.
  86.       Implementor's note: It cannot be stressed enough that applications
  87.       using this standard follow MIME's suggestion that you "be
  88.       conservative in what you generate, and liberal in what you
  89.       accept."  In this particular case it means it would be wise for an
  90.       implementation to accept messages with any content-transfer-
  91.       encoding, but restrict generation to the 7-bit format required by
  92.       this memo.  This will allow future compatibility in the event the
  93.       Internet SMTP framework becomes 8-bit friendly.
  94. 4. OpenPGP encrypted data
  95.    Before OpenPGP encryption, the data is written in MIME canonical
  96.    format (body and headers).
  97.    OpenPGP encrypted data is denoted by the "multipart/encrypted"
  98.    content type, described in [2], and MUST have a "protocol" parameter
  99.    value of "application/pgp-encrypted".  Note that the value of the
  100.    parameter MUST be enclosed in quotes.
  101.    The multipart/encrypted MIME body MUST consist of exactly two body
  102.    parts, the first with content type "application/pgp-encrypted".  This
  103.    body contains the control information.  A message complying with this
  104.    standard MUST contain a "Version: 1" field in this body.  Since the
  105.    OpenPGP packet format contains all other information necessary for
  106.    decrypting, no other information is required here.
  107.    The second MIME body part MUST contain the actual encrypted data.  It
  108.    MUST be labeled with a content type of "application/octet-stream".
  109.    Example message:
  110.       From: Michael Elkins <elkins@aero.org>
  111.       To: Michael Elkins <elkins@aero.org>
  112.       Mime-Version: 1.0
  113. Elkins, et al.              Standards Track                     [Page 3]
  114. RFC 3156               MIME Security with OpenPGP            August 2001
  115.       Content-Type: multipart/encrypted; boundary=foo;
  116.          protocol="application/pgp-encrypted"
  117.       --foo
  118.       Content-Type: application/pgp-encrypted
  119.       Version: 1
  120.       --foo
  121.       Content-Type: application/octet-stream
  122.       -----BEGIN PGP MESSAGE-----
  123.       Version: 2.6.2
  124.       hIwDY32hYGCE8MkBA/wOu7d45aUxF4Q0RKJprD3v5Z9K1YcRJ2fve87lMlDlx4Oj
  125.       eW4GDdBfLbJE7VUpp13N19GL8e/AqbyyjHH4aS0YoTk10QQ9nnRvjY8nZL3MPXSZ
  126.       g9VGQxFeGqzykzmykU6A26MSMexR4ApeeON6xzZWfo+0yOqAq6lb46wsvldZ96YA
  127.       AABH78hyX7YX4uT1tNCWEIIBoqqvCeIMpp7UQ2IzBrXg6GtukS8NxbukLeamqVW3
  128.       1yt21DYOjuLzcMNe/JNsD9vDVCvOOG3OCi8=
  129.       =zzaA
  130.       -----END PGP MESSAGE-----
  131.       --foo--
  132. 5. OpenPGP signed data
  133.    OpenPGP signed messages are denoted by the "multipart/signed" content
  134.    type, described in [2], with a "protocol" parameter which MUST have a
  135.    value of "application/pgp-signature" (MUST be quoted).
  136.    The "micalg" parameter for the "application/pgp-signature" protocol
  137.    MUST contain exactly one hash-symbol of the format "pgp-<hash-
  138.    identifier>", where <hash-identifier> identifies the Message
  139.    Integrity Check (MIC) algorithm used to generate the signature.
  140.    Hash-symbols are constructed from the text names registered in [1] or
  141.    according to the mechanism defined in that document by converting the
  142.    text name to lower case and prefixing it with the four characters
  143.    "pgp-".
  144.    Currently defined values are "pgp-md5", "pgp-sha1", "pgp-ripemd160",
  145.    "pgp-md2", "pgp-tiger192", and "pgp-haval-5-160".
  146.    The multipart/signed body MUST consist of exactly two parts.  The
  147.    first part contains the signed data in MIME canonical format,
  148.    including a set of appropriate content headers describing the data.
  149.    The second body MUST contain the OpenPGP digital signature.  It MUST
  150.    be labeled with a content type of "application/pgp-signature".
  151. Elkins, et al.              Standards Track                     [Page 4]
  152. RFC 3156               MIME Security with OpenPGP            August 2001
  153.       Note: Implementations can either generate "signatures of a
  154.       canonical text document" or "signatures of a binary document", as
  155.       defined in [1].  The restrictions on the signed material put forth
  156.       in section 3 and in this section will make sure that the various
  157.       MIC algorithm variants specified in [1] and [5] will all produce
  158.       the same result.
  159.    When the OpenPGP digital signature is generated:
  160.    (1)   The data to be signed MUST first be converted to its content-
  161.          type specific canonical form.  For text/plain, this means
  162.          conversion to an appropriate character set and conversion of
  163.          line endings to the canonical <CR><LF> sequence.
  164.    (2)   An appropriate Content-Transfer-Encoding is then applied; see
  165.          section 3.  In particular, line endings in the encoded data
  166.          MUST use the canonical <CR><LF> sequence where appropriate
  167.          (note that the canonical line ending may or may not be present
  168.          on the last line of encoded data and MUST NOT be included in
  169.          the signature if absent).
  170.    (3)   MIME content headers are then added to the body, each ending
  171.          with the canonical <CR><LF> sequence.
  172.    (4)   As described in section 3 of this document, any trailing
  173.          whitespace MUST then be removed from the signed material.
  174.    (5)   As described in [2], the digital signature MUST be calculated
  175.          over both the data to be signed and its set of content headers.
  176.    (6)   The signature MUST be generated detached from the signed data
  177.          so that the process does not alter the signed data in any way.
  178.       Note: The accepted OpenPGP convention is for signed data to end
  179.       with a <CR><LF> sequence.  Note that the <CR><LF> sequence
  180.       immediately preceding a MIME boundary delimiter line is considered
  181.       to be part of the delimiter in [3], 5.1.  Thus, it is not part of
  182.       the signed data preceding the delimiter line.  An implementation
  183.       which elects to adhere to the OpenPGP convention has to make sure
  184.       it inserts a <CR><LF> pair on the last line of the data to be
  185.       signed and transmitted (signed message and transmitted message
  186.       MUST be identical).
  187.    Example message:
  188.          From: Michael Elkins <elkins@aero.org>
  189.          To: Michael Elkins <elkins@aero.org>
  190.          Mime-Version: 1.0
  191. Elkins, et al.              Standards Track                     [Page 5]
  192. RFC 3156               MIME Security with OpenPGP            August 2001
  193.          Content-Type: multipart/signed; boundary=bar; micalg=pgp-md5;
  194.            protocol="application/pgp-signature"
  195.          --bar
  196.       & Content-Type: text/plain; charset=iso-8859-1
  197.       & Content-Transfer-Encoding: quoted-printable
  198.       &
  199.       & =A1Hola!
  200.       &
  201.       & Did you know that talking to yourself is a sign of senility?
  202.       &
  203.       & It's generally a good idea to encode lines that begin with
  204.       & From=20because some mail transport agents will insert a greater-
  205.       & than (>) sign, thus invalidating the signature.
  206.       &
  207.       & Also, in some cases it might be desirable to encode any   =20
  208.       & trailing whitespace that occurs on lines in order to ensure  =20
  209.       & that the message signature is not invalidated when passing =20
  210.       & a gateway that modifies such whitespace (like BITNET). =20
  211.       &
  212.       & me
  213.       --bar
  214.       Content-Type: application/pgp-signature
  215.       -----BEGIN PGP MESSAGE-----
  216.       Version: 2.6.2
  217.       iQCVAwUBMJrRF2N9oWBghPDJAQE9UQQAtl7LuRVndBjrk4EqYBIb3h5QXIX/LC//
  218.       jJV5bNvkZIGPIcEmI5iFd9boEgvpirHtIREEqLQRkYNoBActFBZmh9GC3C041WGq
  219.       uMbrbxc+nIs1TIKlA08rVi9ig/2Yh7LFrK5Ein57U/W72vgSxLhe/zhdfolT9Brn
  220.       HOxEa44b+EI=
  221.       =ndaj
  222.       -----END PGP MESSAGE-----
  223.       --bar--
  224.    The "&"s in the previous example indicate the portion of the data
  225.    over which the signature was calculated.
  226.    Upon receipt of a signed message, an application MUST:
  227.    (1)   Convert line endings to the canonical <CR><LF> sequence before
  228.          the signature can be verified.  This is necessary since the
  229.          local MTA may have converted to a local end of line convention.
  230. Elkins, et al.              Standards Track                     [Page 6]
  231. RFC 3156               MIME Security with OpenPGP            August 2001
  232.    (2)   Pass both the signed data and its associated content headers
  233.          along with the OpenPGP signature to the signature verification
  234.          service.
  235. 6. Encrypted and Signed Data
  236.    Sometimes it is desirable to both digitally sign and then encrypt a
  237.    message to be sent.  This protocol allows for two methods of
  238.    accomplishing this task.
  239. 6.1. RFC 1847 Encapsulation
  240.    In [2], it is stated that the data is first signed as a
  241.    multipart/signature body, and then encrypted to form the final
  242.    multipart/encrypted body.  This is most useful for standard MIME-
  243.    compliant message forwarding.
  244.    Example:
  245.          Content-Type: multipart/encrypted;
  246.             protocol="application/pgp-encrypted"; boundary=foo
  247.          --foo
  248.          Content-Type: application/pgp-encrypted
  249.          Version: 1
  250.          --foo
  251.          Content-Type: application/octet-stream
  252.          -----BEGIN PGP MESSAGE-----
  253.       & Content-Type: multipart/signed; micalg=pgp-md5
  254.       &     protocol="application/pgp-signature"; boundary=bar
  255.       &
  256.       & --bar
  257.       & Content-Type: text/plain; charset=us-ascii
  258.       &
  259.       & This message was first signed, and then encrypted.
  260.       &
  261.       & --bar
  262.       & Content-Type: application/pgp-signature
  263.       &
  264.       & -----BEGIN PGP MESSAGE-----
  265.       & Version: 2.6.2
  266.       &
  267.       & iQCVAwUBMJrRF2N9oWBghPDJAQE9UQQAtl7LuRVndBjrk4EqYBIb3h5QXIX/LC//
  268.       & jJV5bNvkZIGPIcEmI5iFd9boEgvpirHtIREEqLQRkYNoBActFBZmh9GC3C041WGq
  269.       & uMbrbxc+nIs1TIKlA08rVi9ig/2Yh7LFrK5Ein57U/W72vgSxLhe/zhdfolT9Brn
  270. Elkins, et al.              Standards Track                     [Page 7]
  271. RFC 3156               MIME Security with OpenPGP            August 2001
  272.       & HOxEa44b+EI=
  273.       & =ndaj
  274.       & -----END PGP MESSAGE-----
  275.       &
  276.       & --bar--
  277.         -----END PGP MESSAGE-----
  278.         --foo--
  279.    (The text preceded by '&' indicates that it is really encrypted, but
  280.    presented as text for clarity.)
  281. 6.2. Combined method
  282.    The OpenPGP packet format [1] describes a method for signing and
  283.    encrypting data in a single OpenPGP message.  This method is allowed
  284.    in order to reduce processing overhead and increase compatibility
  285.    with non-MIME implementations of OpenPGP.  The resulting data is
  286.    formatted as a "multipart/encrypted" object as described in Section
  287.    4.
  288.    Messages which are encrypted and signed in this combined fashion are
  289.    REQUIRED to follow the same canonicalization rules as
  290.    multipart/signed objects.
  291.    It is explicitly allowed for an agent to decrypt a combined message
  292.    and rewrite it as a multipart/signed object using the signature data
  293.    embedded in the encrypted version.
  294. 7. Distribution of OpenPGP public keys
  295.    Content-Type: application/pgp-keys
  296.    Required parameters: none
  297.    Optional parameters: none
  298.    A MIME body part of the content type "application/pgp-keys" contains
  299.    ASCII-armored transferable Public Key Packets as defined in [1],
  300.    section 10.1.
  301. 8. Security Considerations
  302.    Signatures of a canonical text document as defined in [1] ignore
  303.    trailing white space in signed material.  Implementations which
  304.    choose to use signatures of canonical text documents will not be able
  305.    to detect the addition of whitespace in transit.
  306.    See [3], [4] for more information on the security considerations
  307.    concerning the underlying protocols.
  308. Elkins, et al.              Standards Track                     [Page 8]
  309. RFC 3156               MIME Security with OpenPGP            August 2001
  310. 9. IANA Considerations
  311.    This document defines three media types: "application/pgp-encrypted",
  312.    "application/pgp-signature" and "application/pgp-keys".  The
  313.    following sections specify the IANA registrations for these types.
  314. 9.1. Registration of the application/pgp-encrypted media type
  315.    MIME media type name: application
  316.    MIME subtype name: pgp-encrypted
  317.    Required parameters: none
  318.    Optional parameters: none
  319.    Encoding considerations:
  320.       Currently this media type always consists of a single 7bit text
  321.       string.
  322.    Security considerations:
  323.       See Section 8 and RFC 2440 Section 13.
  324.    Interoperability considerations: none
  325.    Published specification:
  326.       This document.
  327.    Additional information:
  328.       Magic number(s): none
  329.       File extension(s): none
  330.       Macintosh File Type Code(s): none
  331.    Person & email address to contact for further information:
  332.       Michael Elkins
  333.       Email: me@cs.hmc.edu
  334.    Intended usage: common
  335.    Author/Change controller:
  336.       Michael Elkins
  337.       Email: me@cs.hmc.edu
  338. Elkins, et al.              Standards Track                     [Page 9]
  339. RFC 3156               MIME Security with OpenPGP            August 2001
  340. 9.2. Registration of the application/pgp-signature media type
  341.    MIME media type name: application
  342.    MIME subtype name: pgp-signature
  343.    Required parameters: none
  344.    Optional parameters: none
  345.    Encoding considerations:
  346.       The content of this media type always consists of 7bit text.
  347.    Security considerations:
  348.       See Section 8 and RFC 2440 Section 13.
  349.    Interoperability considerations: none
  350.    Published specification:
  351.       RFC 2440 and this document.
  352.    Additional information:
  353.       Magic number(s): none
  354.       File extension(s): asc, sig
  355.       Macintosh File Type Code(s): pgDS
  356.    Person & email address to contact for further information:
  357.       Michael Elkins
  358.       Email: me@cs.hmc.edu
  359.    Intended usage: common
  360.    Author/Change controller:
  361.       Michael Elkins
  362.       Email: me@cs.hmc.edu
  363. 9.3. Registration of the application/pgp-keys media type
  364.    MIME media type name: application
  365.    MIME subtype name: pgp-keys
  366.    Required parameters: none
  367.    Optional parameters: none
  368. Elkins, et al.              Standards Track                    [Page 10]
  369. RFC 3156               MIME Security with OpenPGP            August 2001
  370.    Encoding considerations:
  371.       The content of this media type always consists of 7bit text.
  372.    Security considerations:
  373.       See Section 8 and RFC 2440 Section 13.
  374.    Interoperability considerations: none
  375.    Published specification:
  376.       RFC 2440 and this document.
  377.    Additional information:
  378.       Magic number(s): none
  379.       File extension(s): asc
  380.       Macintosh File Type Code(s): none
  381.    Person & email address to contact for further information:
  382.       Michael Elkins
  383.       Email: me@cs.hmc.edu
  384.    Intended usage: common
  385.    Author/Change controller:
  386.       Michael Elkins
  387.       Email: me@cs.hmc.edu
  388. Elkins, et al.              Standards Track                    [Page 11]
  389. RFC 3156               MIME Security with OpenPGP            August 2001
  390. 10. Notes
  391.    "PGP" and "Pretty Good Privacy" are registered trademarks of Network
  392.    Associates, Inc.
  393. 11. Acknowledgements
  394.    This document relies on the work of the IETF's OpenPGP Working
  395.    Group's definitions of the OpenPGP Message Format.  The OpenPGP
  396.    message format is currently described in RFC 2440 [1].
  397.    Special thanks are due: to Philip Zimmermann for his original and
  398.    ongoing work on PGP; to Charles Breed, Jon Callas and Dave Del Torto
  399.    for originally proposing the formation of the OpenPGP Working Group;
  400.    and to Steve Schoenfeld for helpful feedback during the draft
  401.    process.  The authors would also like to thank the engineers at
  402.    Pretty Good Privacy, Inc (now Network Associates, Inc), including
  403.    Colin Plumb, Hal Finney, Jon Callas, Mark Elrod, Mark Weaver and
  404.    Lloyd Chambers, for their technical commentary.
  405.    Additional thanks are due to Jeff Schiller and Derek Atkins for their
  406.    continuing support of strong cryptography and PGP freeware at MIT; to
  407.    Rodney Thayer of Sable Technology; to John Noerenberg, Steve Dorner
  408.    and Laurence Lundblade of the Eudora team at QUALCOMM, Inc; to Bodo
  409.    Moeller for proposing the approach followed with respect to trailing
  410.    whitespace; to John Gilmore, Hugh Daniel and Fred Ringel (at
  411.    Rivertown) and Ian Bell (at Turnpike) for their timely critical
  412.    commentary; and to the international members of the IETF's OpenPGP
  413.    mailing list, including William Geiger, Lutz Donnerhacke and Kazu
  414.    Yamamoto.  The idea to use multipart/mixed with multipart/signed has
  415.    been attributed to James Galvin.  Finally, our gratitude is due to
  416.    the many members of the "Cypherpunks," "Coderpunks" and "pgp-users"
  417.    <http://cryptorights.org/pgp-users> mailing lists and the many users
  418.    of PGP worldwide for helping keep the path to privacy open.
  419. Elkins, et al.              Standards Track                    [Page 12]
  420. RFC 3156               MIME Security with OpenPGP            August 2001
  421. 12. Addresses of the Authors and OpenPGP Working Group Chair
  422.    The OpenPGP working group can be contacted via the current chair:
  423.    John W. Noerenberg II
  424.    Qualcomm, Inc.
  425.    5775 Morehouse Dr.
  426.    San Diego, CA 92121 USA
  427.    Phone: +1 619 658 3510
  428.    EMail: jwn2@qualcomm.com
  429.    The principal authors of this document are:
  430.    Dave Del Torto
  431.    CryptoRights Foundation
  432.    80 Alviso Street, Mailstop: CRF
  433.    San Francisco, CA 94127 USA
  434.    Phone: +1.415.334.5533, vm: #2
  435.    EMail: ddt@cryptorights.org, ddt@openpgp.net
  436.    Michael Elkins
  437.    Network Associates, Inc.
  438.    3415 S. Sepulveda Blvd Suite 700
  439.    Los Angeles, CA 90034 USA
  440.    Phone: +1.310.737.1663
  441.    Fax:   +1.310.737.1755
  442.    Email: me@cs.hmc.edu, Michael_Elkins@NAI.com
  443.    Raph Levien
  444.    University of California at Berkeley
  445.    579 Soda Hall
  446.    Berkeley, CA 94720 USA
  447.    Phone: +1.510.642.6509
  448.    EMail: raph@acm.org
  449.    Thomas Roessler
  450.    Nordstrasse 99
  451.    D-53111 Bonn, Germany
  452.    Phone: +49-228-638007
  453.    EMail: roessler@does-not-exist.org
  454. Elkins, et al.              Standards Track                    [Page 13]
  455. RFC 3156               MIME Security with OpenPGP            August 2001
  456. References
  457.    [1]   Callas, J., Donnerhacke, L., Finney, H. and R. Thayer, "OpenPGP
  458.          Message Format", RFC 2440, November 1998.
  459.    [2]   Galvin, J., Murphy, G., Crocker, S. and N. Freed, "Security
  460.          Multiparts for MIME: Multipart/Signed and Multipart/Encrypted",
  461.          RFC 1847, October 1995.
  462.    [3]   Freed, N. and N. Borenstein, "Multipurpose Internet Mail
  463.          Extensions (MIME) Part Two: Media Types", RFC 2046, November
  464.          1996.
  465.    [4]   Galvin, J., Murphy, G., Crocker, S. and N. Freed, "MIME Object
  466.          Security Services", RFC 1848, October 1995.
  467.    [5]   Atkins, D., Stallings, W. and P. Zimmermann, "PGP Message
  468.          Exchange Formats", RFC 1991, August 1996.
  469.    [6]   Elkins, M., "MIME Security with Pretty Good Privacy (PGP)", RFC
  470.          2015, October 1996.
  471.    [7]   Freed, N., "Gateways and MIME Security Multiparts", RFC 2480,
  472.          January 1999.
  473. Elkins, et al.              Standards Track                    [Page 14]
  474. RFC 3156               MIME Security with OpenPGP            August 2001
  475. Full Copyright Statement
  476.    Copyright (C) The Internet Society (2001).  All Rights Reserved.
  477.    This document and translations of it may be copied and furnished to
  478.    others, and derivative works that comment on or otherwise explain it
  479.    or assist in its implementation may be prepared, copied, published
  480.    and distributed, in whole or in part, without restriction of any
  481.    kind, provided that the above copyright notice and this paragraph are
  482.    included on all such copies and derivative works.  However, this
  483.    document itself may not be modified in any way, such as by removing
  484.    the copyright notice or references to the Internet Society or other
  485.    Internet organizations, except as needed for the purpose of
  486.    developing Internet standards in which case the procedures for
  487.    copyrights defined in the Internet Standards process must be
  488.    followed, or as required to translate it into languages other than
  489.    English.
  490.    The limited permissions granted above are perpetual and will not be
  491.    revoked by the Internet Society or its successors or assigns.
  492.    This document and the information contained herein is provided on an
  493.    "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
  494.    TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
  495.    BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
  496.    HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
  497.    MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
  498. Acknowledgement
  499.    Funding for the RFC Editor function is currently provided by the
  500.    Internet Society.
  501. Elkins, et al.              Standards Track                    [Page 15]