7 Network Working Group S. Blake-Wilson
8 Request for Comments: 3546 BCI
9 Updates: 2246 M. Nystrom
10 Category: Standards Track RSA Security
12 Independent Consultant
20 Transport Layer Security (TLS) Extensions
24 This document specifies an Internet standards track protocol for the
25 Internet community, and requests discussion and suggestions for
26 improvements. Please refer to the current edition of the "Internet
27 Official Protocol Standards" (STD 1) for the standardization state
28 and status of this protocol. Distribution of this memo is unlimited.
32 Copyright (C) The Internet Society (2003). All Rights Reserved.
36 This document describes extensions that may be used to add
37 functionality to Transport Layer Security (TLS). It provides both
38 generic extension mechanisms for the TLS handshake client and server
39 hellos, and specific extensions using these generic mechanisms.
41 The extensions may be used by TLS clients and servers. The
42 extensions are backwards compatible - communication is possible
43 between TLS 1.0 clients that support the extensions and TLS 1.0
44 servers that do not support the extensions, and vice versa.
46 Conventions used in this Document
48 The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
49 "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
50 document are to be interpreted as described in BCP 14, RFC 2119
58 Blake-Wilson, et. al. Standards Track [Page 1]
60 RFC 3546 TLS Extensions June 2003
65 1. Introduction ............................................. 2
66 2. General Extension Mechanisms ............................. 4
67 2.1. Extended Client Hello ............................... 5
68 2.2. Extended Server Hello ............................... 5
69 2.3. Hello Extensions .................................... 6
70 2.4. Extensions to the handshake protocol ................ 7
71 3. Specific Extensions ...................................... 8
72 3.1. Server Name Indication .............................. 8
73 3.2. Maximum Fragment Length Negotiation ................. 10
74 3.3. Client Certificate URLs ............................. 11
75 3.4. Trusted CA Indication ............................... 14
76 3.5. Truncated HMAC ...................................... 15
77 3.6. Certificate Status Request........................... 16
78 4. Error alerts .............................................. 18
79 5. Procedure for Defining New Extensions...................... 20
80 6. Security Considerations .................................. 21
81 6.1. Security of server_name ............................. 21
82 6.2. Security of max_fragment_length ..................... 21
83 6.3. Security of client_certificate_url .................. 22
84 6.4. Security of trusted_ca_keys ......................... 23
85 6.5. Security of truncated_hmac .......................... 23
86 6.6. Security of status_request .......................... 24
87 7. Internationalization Considerations ...................... 24
88 8. IANA Considerations ...................................... 24
89 9. Intellectual Property Rights ............................. 26
90 10. Acknowledgments .......................................... 26
91 11. Normative References ..................................... 27
92 12. Informative References ................................... 28
93 13. Authors' Addresses ....................................... 28
94 14. Full Copyright Statement ................................. 29
98 This document describes extensions that may be used to add
99 functionality to Transport Layer Security (TLS). It provides both
100 generic extension mechanisms for the TLS handshake client and server
101 hellos, and specific extensions using these generic mechanisms.
103 TLS is now used in an increasing variety of operational environments
104 - many of which were not envisioned when the original design criteria
105 for TLS were determined. The extensions introduced in this document
106 are designed to enable TLS to operate as effectively as possible in
107 new environments like wireless networks.
114 Blake-Wilson, et. al. Standards Track [Page 2]
116 RFC 3546 TLS Extensions June 2003
119 Wireless environments often suffer from a number of constraints not
120 commonly present in wired environments. These constraints may
121 include bandwidth limitations, computational power limitations,
122 memory limitations, and battery life limitations.
124 The extensions described here focus on extending the functionality
125 provided by the TLS protocol message formats. Other issues, such as
126 the addition of new cipher suites, are deferred.
128 Specifically, the extensions described in this document are designed
131 - Allow TLS clients to provide to the TLS server the name of the
132 server they are contacting. This functionality is desirable to
133 facilitate secure connections to servers that host multiple
134 'virtual' servers at a single underlying network address.
136 - Allow TLS clients and servers to negotiate the maximum fragment
137 length to be sent. This functionality is desirable as a result of
138 memory constraints among some clients, and bandwidth constraints
139 among some access networks.
141 - Allow TLS clients and servers to negotiate the use of client
142 certificate URLs. This functionality is desirable in order to
143 conserve memory on constrained clients.
145 - Allow TLS clients to indicate to TLS servers which CA root keys
146 they possess. This functionality is desirable in order to prevent
147 multiple handshake failures involving TLS clients that are only
148 able to store a small number of CA root keys due to memory
151 - Allow TLS clients and servers to negotiate the use of truncated
152 MACs. This functionality is desirable in order to conserve
153 bandwidth in constrained access networks.
155 - Allow TLS clients and servers to negotiate that the server sends
156 the client certificate status information (e.g., an Online
157 Certificate Status Protocol (OCSP) [OCSP] response) during a TLS
158 handshake. This functionality is desirable in order to avoid
159 sending a Certificate Revocation List (CRL) over a constrained
160 access network and therefore save bandwidth.
162 In order to support the extensions above, general extension
163 mechanisms for the client hello message and the server hello message
170 Blake-Wilson, et. al. Standards Track [Page 3]
172 RFC 3546 TLS Extensions June 2003
175 The extensions described in this document may be used by TLS 1.0
176 clients and TLS 1.0 servers. The extensions are designed to be
177 backwards compatible - meaning that TLS 1.0 clients that support the
178 extensions can talk to TLS 1.0 servers that do not support the
179 extensions, and vice versa.
181 Backwards compatibility is primarily achieved via two considerations:
183 - Clients typically request the use of extensions via the extended
184 client hello message described in Section 2.1. TLS 1.0 [TLS]
185 requires servers to accept extended client hello messages, even if
186 the server does not "understand" the extension.
188 - For the specific extensions described here, no mandatory server
189 response is required when clients request extended functionality.
191 Note however, that although backwards compatibility is supported,
192 some constrained clients may be forced to reject communications with
193 servers that do not support the extensions as a result of the limited
194 capabilities of such clients.
196 The remainder of this document is organized as follows. Section 2
197 describes general extension mechanisms for the client hello and
198 server hello handshake messages. Section 3 describes specific
199 extensions to TLS 1.0. Section 4 describes new error alerts for use
200 with the TLS extensions. The final sections of the document address
201 IPR, security considerations, registration of the application/pkix-
202 pkipath MIME type, acknowledgements, and references.
204 2. General Extension Mechanisms
206 This section presents general extension mechanisms for the TLS
207 handshake client hello and server hello messages.
209 These general extension mechanisms are necessary in order to enable
210 clients and servers to negotiate whether to use specific extensions,
211 and how to use specific extensions. The extension formats described
212 are based on [MAILING LIST].
214 Section 2.1 specifies the extended client hello message format,
215 Section 2.2 specifies the extended server hello message format, and
216 Section 2.3 describes the actual extension format used with the
217 extended client and server hellos.
226 Blake-Wilson, et. al. Standards Track [Page 4]
228 RFC 3546 TLS Extensions June 2003
231 2.1. Extended Client Hello
233 Clients MAY request extended functionality from servers by sending
234 the extended client hello message format in place of the client hello
235 message format. The extended client hello message format is:
238 ProtocolVersion client_version;
240 SessionID session_id;
241 CipherSuite cipher_suites<2..2^16-1>;
242 CompressionMethod compression_methods<1..2^8-1>;
243 Extension client_hello_extension_list<0..2^16-1>;
246 Here the new "client_hello_extension_list" field contains a list of
247 extensions. The actual "Extension" format is defined in Section 2.3.
249 In the event that a client requests additional functionality using
250 the extended client hello, and this functionality is not supplied by
251 the server, the client MAY abort the handshake.
253 Note that [TLS], Section 7.4.1.2, allows additional information to be
254 added to the client hello message. Thus the use of the extended
255 client hello defined above should not "break" existing TLS 1.0
258 A server that supports the extensions mechanism MUST accept only
259 client hello messages in either the original or extended ClientHello
260 format, and (as for all other messages) MUST check that the amount of
261 data in the message precisely matches one of these formats; if not
262 then it MUST send a fatal "decode_error" alert. This overrides the
263 "Forward compatibility note" in [TLS].
265 2.2. Extended Server Hello
267 The extended server hello message format MAY be sent in place of the
268 server hello message when the client has requested extended
269 functionality via the extended client hello message specified in
270 Section 2.1. The extended server hello message format is:
282 Blake-Wilson, et. al. Standards Track [Page 5]
284 RFC 3546 TLS Extensions June 2003
288 ProtocolVersion server_version;
290 SessionID session_id;
291 CipherSuite cipher_suite;
292 CompressionMethod compression_method;
293 Extension server_hello_extension_list<0..2^16-1>;
296 Here the new "server_hello_extension_list" field contains a list of
297 extensions. The actual "Extension" format is defined in Section 2.3.
299 Note that the extended server hello message is only sent in response
300 to an extended client hello message. This prevents the possibility
301 that the extended server hello message could "break" existing TLS 1.0
304 2.3. Hello Extensions
306 The extension format for extended client hellos and extended server
310 ExtensionType extension_type;
311 opaque extension_data<0..2^16-1>;
316 - "extension_type" identifies the particular extension type.
318 - "extension_data" contains information specific to the particular
321 The extension types defined in this document are:
324 server_name(0), max_fragment_length(1),
325 client_certificate_url(2), trusted_ca_keys(3),
326 truncated_hmac(4), status_request(5), (65535)
329 Note that for all extension types (including those defined in
330 future), the extension type MUST NOT appear in the extended server
331 hello unless the same extension type appeared in the corresponding
332 client hello. Thus clients MUST abort the handshake if they receive
333 an extension type in the extended server hello that they did not
334 request in the associated (extended) client hello.
338 Blake-Wilson, et. al. Standards Track [Page 6]
340 RFC 3546 TLS Extensions June 2003
343 Nonetheless "server initiated" extensions may be provided in the
344 future within this framework by requiring the client to first send an
345 empty extension to indicate that it supports a particular extension.
347 Also note that when multiple extensions of different types are
348 present in the extended client hello or the extended server hello,
349 the extensions may appear in any order. There MUST NOT be more than
350 one extension of the same type.
352 Finally note that all the extensions defined in this document are
353 relevant only when a session is initiated. However, a client that
354 requests resumption of a session does not in general know whether the
355 server will accept this request, and therefore it SHOULD send an
356 extended client hello if it would normally do so for a new session.
357 If the resumption request is denied, then a new set of extensions
358 will be negotiated as normal. If, on the other hand, the older
359 session is resumed, then the server MUST ignore extensions appearing
360 in the client hello, and send a server hello containing no
361 extensions; in this case the extension functionality negotiated
362 during the original session initiation is applied to the resumed
365 2.4. Extensions to the handshake protocol
367 This document suggests the use of two new handshake messages,
368 "CertificateURL" and "CertificateStatus". These messages are
369 described in Section 3.3 and Section 3.6, respectively. The new
370 handshake message structure therefore becomes:
373 hello_request(0), client_hello(1), server_hello(2),
374 certificate(11), server_key_exchange (12),
375 certificate_request(13), server_hello_done(14),
376 certificate_verify(15), client_key_exchange(16),
377 finished(20), certificate_url(21), certificate_status(22),
394 Blake-Wilson, et. al. Standards Track [Page 7]
396 RFC 3546 TLS Extensions June 2003
400 HandshakeType msg_type; /* handshake type */
401 uint24 length; /* bytes in message */
402 select (HandshakeType) {
403 case hello_request: HelloRequest;
404 case client_hello: ClientHello;
405 case server_hello: ServerHello;
406 case certificate: Certificate;
407 case server_key_exchange: ServerKeyExchange;
408 case certificate_request: CertificateRequest;
409 case server_hello_done: ServerHelloDone;
410 case certificate_verify: CertificateVerify;
411 case client_key_exchange: ClientKeyExchange;
412 case finished: Finished;
413 case certificate_url: CertificateURL;
414 case certificate_status: CertificateStatus;
418 3. Specific Extensions
420 This section describes the specific TLS extensions specified in this
423 Note that any messages associated with these extensions that are sent
424 during the TLS handshake MUST be included in the hash calculations
425 involved in "Finished" messages.
427 Section 3.1 describes the extension of TLS to allow a client to
428 indicate which server it is contacting. Section 3.2 describes the
429 extension to provide maximum fragment length negotiation. Section
430 3.3 describes the extension to allow client certificate URLs.
431 Section 3.4 describes the extension to allow a client to indicate
432 which CA root keys it possesses. Section 3.5 describes the extension
433 to allow the use of truncated HMAC. Section 3.6 describes the
434 extension to support integration of certificate status information
435 messages into TLS handshakes.
437 3.1. Server Name Indication
439 [TLS] does not provide a mechanism for a client to tell a server the
440 name of the server it is contacting. It may be desirable for clients
441 to provide this information to facilitate secure connections to
442 servers that host multiple 'virtual' servers at a single underlying
450 Blake-Wilson, et. al. Standards Track [Page 8]
452 RFC 3546 TLS Extensions June 2003
455 In order to provide the server name, clients MAY include an extension
456 of type "server_name" in the (extended) client hello. The
457 "extension_data" field of this extension SHALL contain
458 "ServerNameList" where:
463 case host_name: HostName;
471 opaque HostName<1..2^16-1>;
474 ServerName server_name_list<1..2^16-1>
477 Currently the only server names supported are DNS hostnames, however
478 this does not imply any dependency of TLS on DNS, and other name
479 types may be added in the future (by an RFC that Updates this
480 document). TLS MAY treat provided server names as opaque data and
481 pass the names and types to the application.
483 "HostName" contains the fully qualified DNS hostname of the server,
484 as understood by the client. The hostname is represented as a byte
485 string using UTF-8 encoding [UTF8], without a trailing dot.
487 If the hostname labels contain only US-ASCII characters, then the
488 client MUST ensure that labels are separated only by the byte 0x2E,
489 representing the dot character U+002E (requirement 1 in section 3.1
490 of [IDNA] notwithstanding). If the server needs to match the HostName
491 against names that contain non-US-ASCII characters, it MUST perform
492 the conversion operation described in section 4 of [IDNA], treating
493 the HostName as a "query string" (i.e. the AllowUnassigned flag MUST
494 be set). Note that IDNA allows labels to be separated by any of the
495 Unicode characters U+002E, U+3002, U+FF0E, and U+FF61, therefore
496 servers MUST accept any of these characters as a label separator. If
497 the server only needs to match the HostName against names containing
498 exclusively ASCII characters, it MUST compare ASCII names case-
501 Literal IPv4 and IPv6 addresses are not permitted in "HostName".
506 Blake-Wilson, et. al. Standards Track [Page 9]
508 RFC 3546 TLS Extensions June 2003
511 It is RECOMMENDED that clients include an extension of type
512 "server_name" in the client hello whenever they locate a server by a
515 A server that receives a client hello containing the "server_name"
516 extension, MAY use the information contained in the extension to
517 guide its selection of an appropriate certificate to return to the
518 client, and/or other aspects of security policy. In this event, the
519 server SHALL include an extension of type "server_name" in the
520 (extended) server hello. The "extension_data" field of this
521 extension SHALL be empty.
523 If the server understood the client hello extension but does not
524 recognize the server name, it SHOULD send an "unrecognized_name"
525 alert (which MAY be fatal).
527 If an application negotiates a server name using an application
528 protocol, then upgrades to TLS, and a server_name extension is sent,
529 then the extension SHOULD contain the same name that was negotiated
530 in the application protocol. If the server_name is established in
531 the TLS session handshake, the client SHOULD NOT attempt to request a
532 different server name at the application layer.
534 3.2. Maximum Fragment Length Negotiation
536 [TLS] specifies a fixed maximum plaintext fragment length of 2^14
537 bytes. It may be desirable for constrained clients to negotiate a
538 smaller maximum fragment length due to memory limitations or
539 bandwidth limitations.
541 In order to negotiate smaller maximum fragment lengths, clients MAY
542 include an extension of type "max_fragment_length" in the (extended)
543 client hello. The "extension_data" field of this extension SHALL
547 2^9(1), 2^10(2), 2^11(3), 2^12(4), (255)
550 whose value is the desired maximum fragment length. The allowed
551 values for this field are: 2^9, 2^10, 2^11, and 2^12.
562 Blake-Wilson, et. al. Standards Track [Page 10]
564 RFC 3546 TLS Extensions June 2003
567 Servers that receive an extended client hello containing a
568 "max_fragment_length" extension, MAY accept the requested maximum
569 fragment length by including an extension of type
570 "max_fragment_length" in the (extended) server hello. The
571 "extension_data" field of this extension SHALL contain
572 "MaxFragmentLength" whose value is the same as the requested maximum
575 If a server receives a maximum fragment length negotiation request
576 for a value other than the allowed values, it MUST abort the
577 handshake with an "illegal_parameter" alert. Similarly, if a client
578 receives a maximum fragment length negotiation response that differs
579 from the length it requested, it MUST also abort the handshake with
580 an "illegal_parameter" alert.
582 Once a maximum fragment length other than 2^14 has been successfully
583 negotiated, the client and server MUST immediately begin fragmenting
584 messages (including handshake messages), to ensure that no fragment
585 larger than the negotiated length is sent. Note that TLS already
586 requires clients and servers to support fragmentation of handshake
589 The negotiated length applies for the duration of the session
590 including session resumptions.
592 The negotiated length limits the input that the record layer may
593 process without fragmentation (that is, the maximum value of
594 TLSPlaintext.length; see [TLS] section 6.2.1). Note that the output
595 of the record layer may be larger. For example, if the negotiated
596 length is 2^9=512, then for currently defined cipher suites (those
597 defined in [TLS], [KERB], and [AESSUITES]), and when null compression
598 is used, the record layer output can be at most 793 bytes: 5 bytes of
599 headers, 512 bytes of application data, 256 bytes of padding, and 20
600 bytes of MAC. That means that in this event a TLS record layer peer
601 receiving a TLS record layer message larger than 793 bytes may
602 discard the message and send a "record_overflow" alert, without
603 decrypting the message.
605 3.3. Client Certificate URLs
607 [TLS] specifies that when client authentication is performed, client
608 certificates are sent by clients to servers during the TLS handshake.
609 It may be desirable for constrained clients to send certificate URLs
610 in place of certificates, so that they do not need to store their
611 certificates and can therefore save memory.
618 Blake-Wilson, et. al. Standards Track [Page 11]
620 RFC 3546 TLS Extensions June 2003
623 In order to negotiate to send certificate URLs to a server, clients
624 MAY include an extension of type "client_certificate_url" in the
625 (extended) client hello. The "extension_data" field of this
626 extension SHALL be empty.
628 (Note that it is necessary to negotiate use of client certificate
629 URLs in order to avoid "breaking" existing TLS 1.0 servers.)
631 Servers that receive an extended client hello containing a
632 "client_certificate_url" extension, MAY indicate that they are
633 willing to accept certificate URLs by including an extension of type
634 "client_certificate_url" in the (extended) server hello. The
635 "extension_data" field of this extension SHALL be empty.
637 After negotiation of the use of client certificate URLs has been
638 successfully completed (by exchanging hellos including
639 "client_certificate_url" extensions), clients MAY send a
640 "CertificateURL" message in place of a "Certificate" message:
643 individual_certs(0), pkipath(1), (255)
652 URLAndOptionalHash url_and_hash_list<1..2^16-1>;
656 opaque url<1..2^16-1>;
657 Boolean hash_present;
658 select (hash_present) {
659 case false: struct {};
662 } URLAndOptionalHash;
666 Here "url_and_hash_list" contains a sequence of URLs and optional
674 Blake-Wilson, et. al. Standards Track [Page 12]
676 RFC 3546 TLS Extensions June 2003
679 When X.509 certificates are used, there are two possibilities:
681 - if CertificateURL.type is "individual_certs", each URL refers to a
682 single DER-encoded X.509v3 certificate, with the URL for the
683 client's certificate first, or
685 - if CertificateURL.type is "pkipath", the list contains a single
686 URL referring to a DER-encoded certificate chain, using the type
687 PkiPath described in Section 8.
689 When any other certificate format is used, the specification that
690 describes use of that format in TLS should define the encoding format
691 of certificates or certificate chains, and any constraint on their
694 The hash corresponding to each URL at the client's discretion is
695 either not present or is the SHA-1 hash of the certificate or
696 certificate chain (in the case of X.509 certificates, the DER-encoded
697 certificate or the DER-encoded PkiPath).
699 Note that when a list of URLs for X.509 certificates is used, the
700 ordering of URLs is the same as that used in the TLS Certificate
701 message (see [TLS] Section 7.4.2), but opposite to the order in which
702 certificates are encoded in PkiPath. In either case, the self-signed
703 root certificate MAY be omitted from the chain, under the assumption
704 that the server must already possess it in order to validate it.
706 Servers receiving "CertificateURL" SHALL attempt to retrieve the
707 client's certificate chain from the URLs, and then process the
708 certificate chain as usual. A cached copy of the content of any URL
709 in the chain MAY be used, provided that a SHA-1 hash is present for
710 that URL and it matches the hash of the cached copy.
712 Servers that support this extension MUST support the http: URL scheme
713 for certificate URLs, and MAY support other schemes.
715 If the protocol used to retrieve certificates or certificate chains
716 returns a MIME formatted response (as HTTP does), then the following
717 MIME Content-Types SHALL be used: when a single X.509v3 certificate
718 is returned, the Content-Type is "application/pkix-cert" [PKIOP], and
719 when a chain of X.509v3 certificates is returned, the Content-Type is
720 "application/pkix-pkipath" (see Section 8).
730 Blake-Wilson, et. al. Standards Track [Page 13]
732 RFC 3546 TLS Extensions June 2003
735 If a SHA-1 hash is present for an URL, then the server MUST check
736 that the SHA-1 hash of the contents of the object retrieved from that
737 URL (after decoding any MIME Content-Transfer-Encoding) matches the
738 given hash. If any retrieved object does not have the correct SHA-1
739 hash, the server MUST abort the handshake with a
740 "bad_certificate_hash_value" alert.
742 Note that clients may choose to send either "Certificate" or
743 "CertificateURL" after successfully negotiating the option to send
744 certificate URLs. The option to send a certificate is included to
745 provide flexibility to clients possessing multiple certificates.
747 If a server encounters an unreasonable delay in obtaining
748 certificates in a given CertificateURL, it SHOULD time out and signal
749 a "certificate_unobtainable" error alert.
751 3.4. Trusted CA Indication
753 Constrained clients that, due to memory limitations, possess only a
754 small number of CA root keys, may wish to indicate to servers which
755 root keys they possess, in order to avoid repeated handshake
758 In order to indicate which CA root keys they possess, clients MAY
759 include an extension of type "trusted_ca_keys" in the (extended)
760 client hello. The "extension_data" field of this extension SHALL
761 contain "TrustedAuthorities" where:
764 TrustedAuthority trusted_authorities_list<0..2^16-1>;
765 } TrustedAuthorities;
768 IdentifierType identifier_type;
769 select (identifier_type) {
770 case pre_agreed: struct {};
771 case key_sha1_hash: SHA1Hash;
772 case x509_name: DistinguishedName;
773 case cert_sha1_hash: SHA1Hash;
778 pre_agreed(0), key_sha1_hash(1), x509_name(2),
779 cert_sha1_hash(3), (255)
782 opaque DistinguishedName<1..2^16-1>;
786 Blake-Wilson, et. al. Standards Track [Page 14]
788 RFC 3546 TLS Extensions June 2003
791 Here "TrustedAuthorities" provides a list of CA root key identifiers
792 that the client possesses. Each CA root key is identified via
795 - "pre_agreed" - no CA root key identity supplied.
797 - "key_sha1_hash" - contains the SHA-1 hash of the CA root key. For
798 DSA and ECDSA keys, this is the hash of the "subjectPublicKey"
799 value. For RSA keys, the hash is of the big-endian byte string
800 representation of the modulus without any initial 0-valued bytes.
801 (This copies the key hash formats deployed in other environments.)
803 - "x509_name" - contains the DER-encoded X.509 DistinguishedName of
806 - "cert_sha1_hash" - contains the SHA-1 hash of a DER-encoded
807 Certificate containing the CA root key.
809 Note that clients may include none, some, or all of the CA root keys
810 they possess in this extension.
812 Note also that it is possible that a key hash or a Distinguished Name
813 alone may not uniquely identify a certificate issuer - for example if
814 a particular CA has multiple key pairs - however here we assume this
815 is the case following the use of Distinguished Names to identify
816 certificate issuers in TLS.
818 The option to include no CA root keys is included to allow the client
819 to indicate possession of some pre-defined set of CA root keys.
821 Servers that receive a client hello containing the "trusted_ca_keys"
822 extension, MAY use the information contained in the extension to
823 guide their selection of an appropriate certificate chain to return
824 to the client. In this event, the server SHALL include an extension
825 of type "trusted_ca_keys" in the (extended) server hello. The
826 "extension_data" field of this extension SHALL be empty.
830 Currently defined TLS cipher suites use the MAC construction HMAC
831 with either MD5 or SHA-1 [HMAC] to authenticate record layer
832 communications. In TLS the entire output of the hash function is
833 used as the MAC tag. However it may be desirable in constrained
834 environments to save bandwidth by truncating the output of the hash
835 function to 80 bits when forming MAC tags.
842 Blake-Wilson, et. al. Standards Track [Page 15]
844 RFC 3546 TLS Extensions June 2003
847 In order to negotiate the use of 80-bit truncated HMAC, clients MAY
848 include an extension of type "truncated_hmac" in the extended client
849 hello. The "extension_data" field of this extension SHALL be empty.
851 Servers that receive an extended hello containing a "truncated_hmac"
852 extension, MAY agree to use a truncated HMAC by including an
853 extension of type "truncated_hmac", with empty "extension_data", in
854 the extended server hello.
856 Note that if new cipher suites are added that do not use HMAC, and
857 the session negotiates one of these cipher suites, this extension
858 will have no effect. It is strongly recommended that any new cipher
859 suites using other MACs consider the MAC size as an integral part of
860 the cipher suite definition, taking into account both security and
861 bandwidth considerations.
863 If HMAC truncation has been successfully negotiated during a TLS
864 handshake, and the negotiated cipher suite uses HMAC, both the client
865 and the server pass this fact to the TLS record layer along with the
866 other negotiated security parameters. Subsequently during the
867 session, clients and servers MUST use truncated HMACs, calculated as
868 specified in [HMAC]. That is, CipherSpec.hash_size is 10 bytes, and
869 only the first 10 bytes of the HMAC output are transmitted and
870 checked. Note that this extension does not affect the calculation of
871 the PRF as part of handshaking or key derivation.
873 The negotiated HMAC truncation size applies for the duration of the
874 session including session resumptions.
876 3.6. Certificate Status Request
878 Constrained clients may wish to use a certificate-status protocol
879 such as OCSP [OCSP] to check the validity of server certificates, in
880 order to avoid transmission of CRLs and therefore save bandwidth on
881 constrained networks. This extension allows for such information to
882 be sent in the TLS handshake, saving roundtrips and resources.
884 In order to indicate their desire to receive certificate status
885 information, clients MAY include an extension of type
886 "status_request" in the (extended) client hello. The
887 "extension_data" field of this extension SHALL contain
888 "CertificateStatusRequest" where:
898 Blake-Wilson, et. al. Standards Track [Page 16]
900 RFC 3546 TLS Extensions June 2003
904 CertificateStatusType status_type;
905 select (status_type) {
906 case ocsp: OCSPStatusRequest;
908 } CertificateStatusRequest;
910 enum { ocsp(1), (255) } CertificateStatusType;
913 ResponderID responder_id_list<0..2^16-1>;
914 Extensions request_extensions;
917 opaque ResponderID<1..2^16-1>;
918 opaque Extensions<0..2^16-1>;
920 In the OCSPStatusRequest, the "ResponderIDs" provides a list of OCSP
921 responders that the client trusts. A zero-length "responder_id_list"
922 sequence has the special meaning that the responders are implicitly
923 known to the server - e.g., by prior arrangement. "Extensions" is a
924 DER encoding of OCSP request extensions.
926 Both "ResponderID" and "Extensions" are DER-encoded ASN.1 types as
927 defined in [OCSP]. "Extensions" is imported from [PKIX]. A zero-
928 length "request_extensions" value means that there are no extensions
929 (as opposed to a zero-length ASN.1 SEQUENCE, which is not valid for
930 the "Extensions" type).
932 In the case of the "id-pkix-ocsp-nonce" OCSP extension, [OCSP] is
933 unclear about its encoding; for clarification, the nonce MUST be a
934 DER-encoded OCTET STRING, which is encapsulated as another OCTET
935 STRING (note that implementations based on an existing OCSP client
936 will need to be checked for conformance to this requirement).
938 Servers that receive a client hello containing the "status_request"
939 extension, MAY return a suitable certificate status response to the
940 client along with their certificate. If OCSP is requested, they
941 SHOULD use the information contained in the extension when selecting
942 an OCSP responder, and SHOULD include request_extensions in the OCSP
945 Servers return a certificate response along with their certificate by
946 sending a "CertificateStatus" message immediately after the
947 "Certificate" message (and before any "ServerKeyExchange" or
948 "CertificateRequest" messages). If a server returns a
954 Blake-Wilson, et. al. Standards Track [Page 17]
956 RFC 3546 TLS Extensions June 2003
959 "CertificateStatus" message, then the server MUST have included an
960 extension of type "status_request" with empty "extension_data" in the
961 extended server hello.
964 CertificateStatusType status_type;
965 select (status_type) {
966 case ocsp: OCSPResponse;
970 opaque OCSPResponse<1..2^24-1>;
972 An "ocsp_response" contains a complete, DER-encoded OCSP response
973 (using the ASN.1 type OCSPResponse defined in [OCSP]). Note that
974 only one OCSP response may be sent.
976 The "CertificateStatus" message is conveyed using the handshake
977 message type "certificate_status".
979 Note that a server MAY also choose not to send a "CertificateStatus"
980 message, even if it receives a "status_request" extension in the
981 client hello message.
983 Note in addition that servers MUST NOT send the "CertificateStatus"
984 message unless it received a "status_request" extension in the client
987 Clients requesting an OCSP response, and receiving an OCSP response
988 in a "CertificateStatus" message MUST check the OCSP response and
989 abort the handshake if the response is not satisfactory.
993 This section defines new error alerts for use with the TLS extensions
994 defined in this document.
996 The following new error alerts are defined. To avoid "breaking"
997 existing clients and servers, these alerts MUST NOT be sent unless
998 the sending party has received an extended hello message from the
999 party they are communicating with.
1001 - "unsupported_extension" - this alert is sent by clients that
1002 receive an extended server hello containing an extension that they
1003 did not put in the corresponding client hello (see Section 2.3).
1004 This message is always fatal.
1010 Blake-Wilson, et. al. Standards Track [Page 18]
1012 RFC 3546 TLS Extensions June 2003
1015 - "unrecognized_name" - this alert is sent by servers that receive a
1016 server_name extension request, but do not recognize the server
1017 name. This message MAY be fatal.
1019 - "certificate_unobtainable" - this alert is sent by servers who are
1020 unable to retrieve a certificate chain from the URL supplied by
1021 the client (see Section 3.3). This message MAY be fatal - for
1022 example if client authentication is required by the server for the
1023 handshake to continue and the server is unable to retrieve the
1024 certificate chain, it may send a fatal alert.
1026 - "bad_certificate_status_response" - this alert is sent by clients
1027 that receive an invalid certificate status response (see Section
1028 3.6). This message is always fatal.
1030 - "bad_certificate_hash_value" - this alert is sent by servers when
1031 a certificate hash does not match a client provided
1032 certificate_hash. This message is always fatal.
1034 These error alerts are conveyed using the following syntax:
1038 unexpected_message(10),
1040 decryption_failed(21),
1041 record_overflow(22),
1042 decompression_failure(30),
1043 handshake_failure(40),
1044 /* 41 is not defined, for historical reasons */
1045 bad_certificate(42),
1046 unsupported_certificate(43),
1047 certificate_revoked(44),
1048 certificate_expired(45),
1049 certificate_unknown(46),
1050 illegal_parameter(47),
1055 export_restriction(60),
1056 protocol_version(70),
1057 insufficient_security(71),
1060 no_renegotiation(100),
1061 unsupported_extension(110), /* new */
1062 certificate_unobtainable(111), /* new */
1066 Blake-Wilson, et. al. Standards Track [Page 19]
1068 RFC 3546 TLS Extensions June 2003
1071 unrecognized_name(112), /* new */
1072 bad_certificate_status_response(113), /* new */
1073 bad_certificate_hash_value(114), /* new */
1077 5. Procedure for Defining New Extensions
1079 Traditionally for Internet protocols, the Internet Assigned Numbers
1080 Authority (IANA) handles the allocation of new values for future
1081 expansion, and RFCs usually define the procedure to be used by the
1082 IANA. However, there are subtle (and not so subtle) interactions
1083 that may occur in this protocol between new features and existing
1084 features which may result in a significant reduction in overall
1087 Therefore, requests to define new extensions (including assigning
1088 extension and error alert numbers) must be approved by IETF Standards
1091 The following considerations should be taken into account when
1092 designing new extensions:
1094 - All of the extensions defined in this document follow the
1095 convention that for each extension that a client requests and that
1096 the server understands, the server replies with an extension of
1099 - Some cases where a server does not agree to an extension are error
1100 conditions, and some simply a refusal to support a particular
1101 feature. In general error alerts should be used for the former,
1102 and a field in the server extension response for the latter.
1104 - Extensions should as far as possible be designed to prevent any
1105 attack that forces use (or non-use) of a particular feature by
1106 manipulation of handshake messages. This principle should be
1107 followed regardless of whether the feature is believed to cause a
1110 Often the fact that the extension fields are included in the
1111 inputs to the Finished message hashes will be sufficient, but
1112 extreme care is needed when the extension changes the meaning of
1113 messages sent in the handshake phase. Designers and implementors
1114 should be aware of the fact that until the handshake has been
1115 authenticated, active attackers can modify messages and insert,
1116 remove, or replace extensions.
1122 Blake-Wilson, et. al. Standards Track [Page 20]
1124 RFC 3546 TLS Extensions June 2003
1127 - It would be technically possible to use extensions to change major
1128 aspects of the design of TLS; for example the design of cipher
1129 suite negotiation. This is not recommended; it would be more
1130 appropriate to define a new version of TLS - particularly since
1131 the TLS handshake algorithms have specific protection against
1132 version rollback attacks based on the version number, and the
1133 possibility of version rollback should be a significant
1134 consideration in any major design change.
1136 6. Security Considerations
1138 Security considerations for the extension mechanism in general, and
1139 the design of new extensions, are described in the previous section.
1140 A security analysis of each of the extensions defined in this
1141 document is given below.
1143 In general, implementers should continue to monitor the state of the
1144 art, and address any weaknesses identified.
1146 Additional security considerations are described in the TLS 1.0 RFC
1149 6.1. Security of server_name
1151 If a single server hosts several domains, then clearly it is
1152 necessary for the owners of each domain to ensure that this satisfies
1153 their security needs. Apart from this, server_name does not appear
1154 to introduce significant security issues.
1156 Implementations MUST ensure that a buffer overflow does not occur
1157 whatever the values of the length fields in server_name.
1159 Although this document specifies an encoding for internationalized
1160 hostnames in the server_name extension, it does not address any
1161 security issues associated with the use of internationalized
1162 hostnames in TLS - in particular, the consequences of "spoofed" names
1163 that are indistinguishable from another name when displayed or
1164 printed. It is recommended that server certificates not be issued
1165 for internationalized hostnames unless procedures are in place to
1166 mitigate the risk of spoofed hostnames.
1168 6.2. Security of max_fragment_length
1170 The maximum fragment length takes effect immediately, including for
1171 handshake messages. However, that does not introduce any security
1172 complications that are not already present in TLS, since [TLS]
1173 requires implementations to be able to handle fragmented handshake
1178 Blake-Wilson, et. al. Standards Track [Page 21]
1180 RFC 3546 TLS Extensions June 2003
1183 Note that as described in section 3.2, once a non-null cipher suite
1184 has been activated, the effective maximum fragment length depends on
1185 the cipher suite and compression method, as well as on the negotiated
1186 max_fragment_length. This must be taken into account when sizing
1187 buffers, and checking for buffer overflow.
1189 6.3. Security of client_certificate_url
1191 There are two major issues with this extension.
1193 The first major issue is whether or not clients should include
1194 certificate hashes when they send certificate URLs.
1196 When client authentication is used *without* the
1197 client_certificate_url extension, the client certificate chain is
1198 covered by the Finished message hashes. The purpose of including
1199 hashes and checking them against the retrieved certificate chain, is
1200 to ensure that the same property holds when this extension is used -
1201 i.e., that all of the information in the certificate chain retrieved
1202 by the server is as the client intended.
1204 On the other hand, omitting certificate hashes enables functionality
1205 that is desirable in some circumstances - for example clients can be
1206 issued daily certificates that are stored at a fixed URL and need not
1207 be provided to the client. Clients that choose to omit certificate
1208 hashes should be aware of the possibility of an attack in which the
1209 attacker obtains a valid certificate on the client's key that is
1210 different from the certificate the client intended to provide.
1211 Although TLS uses both MD5 and SHA-1 hashes in several other places,
1212 this was not believed to be necessary here. The property required of
1213 SHA-1 is second pre-image resistance.
1215 The second major issue is that support for client_certificate_url
1216 involves the server acting as a client in another URL protocol. The
1217 server therefore becomes subject to many of the same security
1218 concerns that clients of the URL scheme are subject to, with the
1219 added concern that the client can attempt to prompt the server to
1220 connect to some, possibly weird-looking URL.
1222 In general this issue means that an attacker might use the server to
1223 indirectly attack another host that is vulnerable to some security
1224 flaw. It also introduces the possibility of denial of service
1225 attacks in which an attacker makes many connections to the server,
1226 each of which results in the server attempting a connection to the
1227 target of the attack.
1234 Blake-Wilson, et. al. Standards Track [Page 22]
1236 RFC 3546 TLS Extensions June 2003
1239 Note that the server may be behind a firewall or otherwise able to
1240 access hosts that would not be directly accessible from the public
1241 Internet; this could exacerbate the potential security and denial of
1242 service problems described above, as well as allowing the existence
1243 of internal hosts to be confirmed when they would otherwise be
1246 The detailed security concerns involved will depend on the URL
1247 schemes supported by the server. In the case of HTTP, the concerns
1248 are similar to those that apply to a publicly accessible HTTP proxy
1249 server. In the case of HTTPS, the possibility for loops and
1250 deadlocks to be created exists and should be addressed. In the case
1251 of FTP, attacks similar to FTP bounce attacks arise.
1253 As a result of this issue, it is RECOMMENDED that the
1254 client_certificate_url extension should have to be specifically
1255 enabled by a server administrator, rather than being enabled by
1256 default. It is also RECOMMENDED that URI protocols be enabled by the
1257 administrator individually, and only a minimal set of protocols be
1258 enabled, with unusual protocols offering limited security or whose
1259 security is not well-understood being avoided.
1261 As discussed in [URI], URLs that specify ports other than the default
1262 may cause problems, as may very long URLs (which are more likely to
1263 be useful in exploiting buffer overflow bugs).
1265 Also note that HTTP caching proxies are common on the Internet, and
1266 some proxies do not check for the latest version of an object
1267 correctly. If a request using HTTP (or another caching protocol)
1268 goes through a misconfigured or otherwise broken proxy, the proxy may
1269 return an out-of-date response.
1271 6.4. Security of trusted_ca_keys
1273 It is possible that which CA root keys a client possesses could be
1274 regarded as confidential information. As a result, the CA root key
1275 indication extension should be used with care.
1277 The use of the SHA-1 certificate hash alternative ensures that each
1278 certificate is specified unambiguously. As for the previous
1279 extension, it was not believed necessary to use both MD5 and SHA-1
1282 6.5. Security of truncated_hmac
1284 It is possible that truncated MACs are weaker than "un-truncated"
1285 MACs. However, no significant weaknesses are currently known or
1286 expected to exist for HMAC with MD5 or SHA-1, truncated to 80 bits.
1290 Blake-Wilson, et. al. Standards Track [Page 23]
1292 RFC 3546 TLS Extensions June 2003
1295 Note that the output length of a MAC need not be as long as the
1296 length of a symmetric cipher key, since forging of MAC values cannot
1297 be done off-line: in TLS, a single failed MAC guess will cause the
1298 immediate termination of the TLS session.
1300 Since the MAC algorithm only takes effect after the handshake
1301 messages have been authenticated by the hashes in the Finished
1302 messages, it is not possible for an active attacker to force
1303 negotiation of the truncated HMAC extension where it would not
1304 otherwise be used (to the extent that the handshake authentication is
1305 secure). Therefore, in the event that any security problem were
1306 found with truncated HMAC in future, if either the client or the
1307 server for a given session were updated to take into account the
1308 problem, they would be able to veto use of this extension.
1310 6.6. Security of status_request
1312 If a client requests an OCSP response, it must take into account that
1313 an attacker's server using a compromised key could (and probably
1314 would) pretend not to support the extension. A client that requires
1315 OCSP validation of certificates SHOULD either contact the OCSP server
1316 directly in this case, or abort the handshake.
1318 Use of the OCSP nonce request extension (id-pkix-ocsp-nonce) may
1319 improve security against attacks that attempt to replay OCSP
1320 responses; see section 4.4.1 of [OCSP] for further details.
1322 7. Internationalization Considerations
1324 None of the extensions defined here directly use strings subject to
1325 localization. Domain Name System (DNS) hostnames are encoded using
1326 UTF-8. If future extensions use text strings, then
1327 internationalization should be considered in their design.
1329 8. IANA Considerations
1331 The MIME type "application/pkix-pkipath" has been registered by the
1332 IANA with the following template:
1334 To: ietf-types@iana.org Subject: Registration of MIME media type
1335 application/pkix-pkipath
1337 MIME media type name: application
1339 MIME subtype name: pkix-pkipath
1341 Required parameters: none
1346 Blake-Wilson, et. al. Standards Track [Page 24]
1348 RFC 3546 TLS Extensions June 2003
1351 Optional parameters: version (default value is "1")
1353 Encoding considerations:
1354 This MIME type is a DER encoding of the ASN.1 type PkiPath,
1356 PkiPath ::= SEQUENCE OF Certificate
1357 PkiPath is used to represent a certification path. Within the
1358 sequence, the order of certificates is such that the subject of
1359 the first certificate is the issuer of the second certificate,
1362 This is identical to the definition that will be published in
1363 [X509-4th-TC1]; note that it is different from that in [X509-4th].
1365 All Certificates MUST conform to [PKIX]. (This should be
1366 interpreted as a requirement to encode only PKIX-conformant
1367 certificates using this type. It does not necessarily require
1368 that all certificates that are not strictly PKIX-conformant must
1369 be rejected by relying parties, although the security consequences
1370 of accepting any such certificates should be considered
1373 DER (as opposed to BER) encoding MUST be used. If this type is
1374 sent over a 7-bit transport, base64 encoding SHOULD be used.
1376 Security considerations:
1377 The security considerations of [X509-4th] and [PKIX] (or any
1378 updates to them) apply, as well as those of any protocol that uses
1379 this type (e.g., TLS).
1381 Note that this type only specifies a certificate chain that can be
1382 assessed for validity according to the relying party's existing
1383 configuration of trusted CAs; it is not intended to be used to
1384 specify any change to that configuration.
1386 Interoperability considerations:
1387 No specific interoperability problems are known with this type,
1388 but for recommendations relating to X.509 certificates in general,
1391 Published specification: this memo, and [PKIX].
1393 Applications which use this media type: TLS. It may also be used by
1394 other protocols, or for general interchange of PKIX certificate
1402 Blake-Wilson, et. al. Standards Track [Page 25]
1404 RFC 3546 TLS Extensions June 2003
1407 Additional information:
1408 Magic number(s): DER-encoded ASN.1 can be easily recognized.
1409 Further parsing is required to distinguish from other ASN.1
1411 File extension(s): .pkipath
1412 Macintosh File Type Code(s): not specified
1414 Person & email address to contact for further information:
1415 Magnus Nystrom <magnus@rsasecurity.com>
1417 Intended usage: COMMON
1419 Author/Change controller:
1420 Magnus Nystrom <magnus@rsasecurity.com>
1422 9. Intellectual Property Rights
1424 The IETF takes no position regarding the validity or scope of any
1425 intellectual property or other rights that might be claimed to
1426 pertain to the implementation or use of the technology described in
1427 this document or the extent to which any license under such rights
1428 might or might not be available; neither does it represent that it
1429 has made any effort to identify any such rights. Information on the
1430 IETF's procedures with respect to rights in standards-track and
1431 standards-related documentation can be found in RFC 2028. Copies of
1432 claims of rights made available for publication and any assurances of
1433 licenses to be made available, or the result of an attempt made to
1434 obtain a general license or permission for the use of such
1435 proprietary rights by implementors or users of this specification can
1436 be obtained from the IETF Secretariat.
1438 The IETF invites any interested party to bring to its attention any
1439 copyrights, patents or patent applications, or other proprietary
1440 rights which may cover technology that may be required to practice
1441 this document. Please address the information to the IETF Executive
1446 The authors wish to thank the TLS Working Group and the WAP Security
1447 Group. This document is based on discussion within these groups.
1458 Blake-Wilson, et. al. Standards Track [Page 26]
1460 RFC 3546 TLS Extensions June 2003
1463 11. Normative References
1465 [HMAC] Krawczyk, H., Bellare, M. and R. Canetti, "HMAC:
1466 Keyed-hashing for message authentication", RFC 2104,
1469 [HTTP] Fielding, R., Gettys, J., Mogul, J., Frystyk, H.,
1470 Masinter, L., Leach, P. and T. Berners-Lee, "Hypertext
1471 Transfer Protocol -- HTTP/1.1", RFC 2616, June 1999.
1473 [IDNA] Faltstrom, P., Hoffman, P. and A. Costello,
1474 "Internationalizing Domain Names in Applications
1475 (IDNA)", RFC 3490, March 2003.
1477 [KEYWORDS] Bradner, S., "Key words for use in RFCs to Indicate
1478 Requirement Levels", BCP 14, RFC 2119, March 1997.
1480 [OCSP] Myers, M., Ankney, R., Malpani, A., Galperin, S. and
1481 C. Adams, "Internet X.509 Public Key Infrastructure:
1482 Online Certificate Status Protocol - OCSP", RFC 2560,
1485 [PKIOP] Housley, R. and P. Hoffman, "Internet X.509 Public Key
1486 Infrastructure - Operation Protocols: FTP and HTTP",
1489 [PKIX] Housley, R., Polk, W., Ford, W. and D. Solo, "Internet
1490 Public Key Infrastructure - Certificate and
1491 Certificate Revocation List (CRL) Profile", RFC 3280,
1494 [TLS] Dierks, T. and C. Allen, "The TLS Protocol Version
1495 1.0", RFC 2246, January 1999.
1497 [URI] Berners-Lee, T., Fielding, R. and L. Masinter,
1498 "Uniform Resource Identifiers (URI): Generic Syntax",
1499 RFC 2396, August 1998.
1501 [UTF8] Yergeau, F., "UTF-8, a transformation format of ISO
1502 10646", RFC 2279, January 1998.
1504 [X509-4th] ITU-T Recommendation X.509 (2000) | ISO/IEC 9594-
1505 8:2001, "Information Systems - Open Systems
1506 Interconnection - The Directory: Public key and
1507 attribute certificate frameworks."
1514 Blake-Wilson, et. al. Standards Track [Page 27]
1516 RFC 3546 TLS Extensions June 2003
1519 [X509-4th-TC1] ITU-T Recommendation X.509(2000) Corrigendum 1(2001) |
1520 ISO/IEC 9594-8:2001/Cor.1:2002, Technical Corrigendum
1521 1 to ISO/IEC 9594:8:2001.
1523 12. Informative References
1525 [KERB] Medvinsky, A. and M. Hur, "Addition of Kerberos Cipher
1526 Suites to Transport Layer Security (TLS)", RFC 2712,
1529 [MAILING LIST] J. Mikkelsen, R. Eberhard, and J. Kistler, "General
1530 ClientHello extension mechanism and virtual hosting,"
1531 ietf-tls mailing list posting, August 14, 2000.
1533 [AESSUITES] Chown, P., "Advanced Encryption Standard (AES)
1534 Ciphersuites for Transport Layer Security (TLS)", RFC
1537 13. Authors' Addresses
1541 EMail: sblakewilson@bcisse.com
1545 EMail: magnus@rsasecurity.com
1548 Independent Consultant
1549 EMail: david.hopwood@zetnet.co.uk
1553 EMail: janm@transactionware.com
1557 EMail: timothy.wright@vodafone.com
1570 Blake-Wilson, et. al. Standards Track [Page 28]
1572 RFC 3546 TLS Extensions June 2003
1575 14. Full Copyright Statement
1577 Copyright (C) The Internet Society (2003). All Rights Reserved.
1579 This document and translations of it may be copied and furnished to
1580 others, and derivative works that comment on or otherwise explain it
1581 or assist in its implementation may be prepared, copied, published
1582 and distributed, in whole or in part, without restriction of any
1583 kind, provided that the above copyright notice and this paragraph are
1584 included on all such copies and derivative works. However, this
1585 document itself may not be modified in any way, such as by removing
1586 the copyright notice or references to the Internet Society or other
1587 Internet organizations, except as needed for the purpose of
1588 developing Internet standards in which case the procedures for
1589 copyrights defined in the Internet Standards process must be
1590 followed, or as required to translate it into languages other than
1593 The limited permissions granted above are perpetual and will not be
1594 revoked by the Internet Society or its successors or assigns.
1596 This document and the information contained herein is provided on an
1597 "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
1598 TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
1599 BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
1600 HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
1601 MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
1605 Funding for the RFC Editor function is currently provided by the
1626 Blake-Wilson, et. al. Standards Track [Page 29]