1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
|
<pre>Network Working Group S. Santesson
Request for Comments: 4325 Microsoft
Updates: <a href="./rfc3280">3280</a> R. Housley
Category: Standards Track Vigil Security
December 2005
<span class="h1">Internet X.509 Public Key Infrastructure Authority Information</span>
<span class="h1">Access Certificate Revocation List (CRL) Extension</span>
Status of This Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (2005).
Abstract
This document updates <a href="./rfc3280">RFC 3280</a> by defining the Authority Information
Access Certificate Revocation List (CRL) extension. <a href="./rfc3280">RFC 3280</a> defines
the Authority Information Access certificate extension using the same
syntax. The CRL extension provides a means of discovering and
retrieving CRL issuer certificates.
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-2">2</a>
<a href="#section-1.1">1.1</a>. Terminology ................................................<a href="#page-3">3</a>
<a href="#section-2">2</a>. Authority Information Access CRL Extension ......................<a href="#page-3">3</a>
<a href="#section-3">3</a>. Security Considerations .........................................<a href="#page-5">5</a>
<a href="#section-4">4</a>. References ......................................................<a href="#page-5">5</a>
<a href="#section-4.1">4.1</a>. Normative References .......................................<a href="#page-5">5</a>
<a href="#section-4.2">4.2</a>. Informative References .....................................<a href="#page-6">6</a>
<span class="grey">Santesson & Housley Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc4325">RFC 4325</a> Authority Information Access CRL Extension December 2005</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
<a href="./rfc3280">RFC 3280</a> [<a href="#ref-PKIX1" title=""Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile"">PKIX1</a>] specifies the validation of certification paths.
One aspect involves the determination that a certificate has not been
revoked, and one revocation checking mechanism is the Certificate
Revocation List (CRL). CRL validation is also specified in <a href="./rfc3280">RFC 3280</a>,
which involves the constructions of a valid certification path for
the CRL issuer. Building a CRL issuer certification path from the
signer of the CRL to a trust anchor is straightforward when the
certificate of the CRL issuer is present in the certification path
associated with the target certificate, but it can be complex in
other situations.
There are several legitimate scenarios where the certificate of the
CRL issuer is not present, or easily discovered, from the target
certification path. This can be the case when indirect CRLs are
used, when the Certification Authority (CA) that issued the target
certificate changes its certificate signing key, or when the CA
employs separate keys for certificate signing and CRL signing.
Methods of finding the certificate of the CRL issuer are currently
available, such as through an accessible directory location or
through use of the Subject Information Access extension in
intermediary CA certificates.
Directory lookup requires existence and access to a directory that
has been populated with all of the necessary certificates. The
Subject Information Access extension, which supports building the CRL
issuer certification path top-down (in the direction from the trust
anchor to the CRL issuer), requires that some certificates in the CRL
issuer certification path includes an appropriate Subject Information
Access extension.
<a href="./rfc3280">RFC 3280</a> [<a href="#ref-PKIX1" title=""Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile"">PKIX1</a>] provides for bottom-up discovery of certification
paths through the Authority Information Access extension, where the
id-ad-caIssuers access method may specify one or more accessLocation
fields that reference CA certificates associated with the certificate
containing this extension.
This document enables the use of the Authority Information Access
extension in CRLs, enabling a CRL checking application to use the
access method (id-ad-caIssuers) to locate certificates that may be
useful in the construction of a valid CRL issuer certification path
to an appropriate trust anchor.
<span class="grey">Santesson & Housley Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc4325">RFC 4325</a> Authority Information Access CRL Extension December 2005</span>
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Terminology</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in <a href="./rfc2119">RFC 2119</a> [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Authority Information Access CRL Extension</span>
This section defines the use of the Authority Information Access
extension in a CRL. The syntax and semantics defined in <a href="./rfc3280">RFC 3280</a>
[<a href="#ref-PKIX1" title=""Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile"">PKIX1</a>] for the certificate extensions are also used for the CRL
extension.
This CRL extension MUST NOT be marked critical.
This extension MUST be identified by the extension object identifier
(OID) defined in <a href="./rfc3280">RFC 3280</a> (1.3.6.1.5.5.7.1.1), and the
AuthorityInfoAccessSyntax MUST be used to form the extension value.
For convenience, the ASN.1 [<a href="#ref-X.680" title=" Information Technology - Abstract Syntax Notation One">X.680</a>] definition of the Authority
Information Access extension is repeated below.
id-pe-authorityInfoAccess OBJECT IDENTIFIER ::= { id-pe 1 }
AuthorityInfoAccessSyntax ::= SEQUENCE SIZE (1..MAX) OF
AccessDescription
AccessDescription ::= SEQUENCE {
accessMethod OBJECT IDENTIFIER,
accessLocation GeneralName }
id-ad OBJECT IDENTIFIER ::= { id-pkix 48 }
id-ad-caIssuers OBJECT IDENTIFIER ::= { id-ad 2 }
When present in a CRL, this extension MUST include at least one
AccessDescription specifying id-ad-caIssuers as the accessMethod.
Access method types other than id-ad-caIssuers MUST NOT be included.
At least one instance of AccessDescription SHOULD specify an
accessLocation that is an HTTP [HTTP/1.1] or Lightweight Directory
Access Protocol [<a href="#ref-LDAP" title=""Lightweight Directory Access Protocol (v3)"">LDAP</a>] Uniform Resource Identifier [<a href="#ref-URI" title=""Uniform Resource Identifier (URI): Generic Syntax"">URI</a>].
Where the information is available via HTTP or FTP, accessLocation
MUST be a uniformResourceIdentifier and the URI MUST point to a
certificate containing file. The certificate file MUST contain
either a single Distinguished Encoding Rules (DER) [<a href="#ref-X.690" title="Canonical Encoding Rules (CER) and Distinguished Encoding Rules (DER)">X.690</a>] encoded
certificate (indicated by the .cer file extension) or a collection of
certificates (indicated by the .p7c file extension):
<span class="grey">Santesson & Housley Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc4325">RFC 4325</a> Authority Information Access CRL Extension December 2005</span>
.cer A single DER encoded certificate as specified in
<a href="./rfc2585">RFC 2585</a> [<a href="#ref-PKIX-CERT" title=""Internet X.509 Public Key Infrastructure Operational Protocols: FTP and HTTP"">PKIX-CERT</a>].
.p7c A "certs-only" CMS message as specified in <a href="./rfc2797">RFC 2797</a> [<a href="#ref-CMC" title=""Certificate Management Messages over CMS"">CMC</a>].
Conforming applications that support HTTP or FTP for accessing
certificates MUST be able to accept .cer files and SHOULD be able
to accept .p7c files.
HTTP server implementations accessed via the URI SHOULD use the
appropriate MIME content-type for the certificate containing file.
Specifically, the HTTP server SHOULD use the content-type
application/pkix-cert [<a href="#ref-PKIX-CERT" title=""Internet X.509 Public Key Infrastructure Operational Protocols: FTP and HTTP"">PKIX-CERT</a>] for a single DER encoded
certificate and application/pkcs7-mime [<a href="#ref-CMC" title=""Certificate Management Messages over CMS"">CMC</a>] for CMS certs-only
(PKCS#7). Consuming clients may use the MIME type and file
extension as a hint to the file content, but should not depend
solely on the presence of the correct MIME type or file extension
in the server response.
When the accessLocation is a directoryName, the information is to
be obtained by the application from whatever directory server is
locally configured. When one CA public key is used to validate
signatures on certificates and CRLs, the desired CA certificate is
stored in the crossCertificatePair and/or cACertificate attributes
as specified in [<a href="./rfc2587" title=""Internet X.509 Public Key Infrastructure: LDAPv2 Schema"">RFC2587</a>]. When different public keys are used to
validate signatures on certificates and CRLs, the desired
certificate is stored in the userCertificate attribute as specified
in [<a href="./rfc2587" title=""Internet X.509 Public Key Infrastructure: LDAPv2 Schema"">RFC2587</a>]. Thus, implementations that support the directoryName
form of accessLocation MUST be prepared to find the needed
certificate in any of these three attributes. The protocol that an
application uses to access the directory (e.g., DAP or LDAP) is a
local matter.
Where the information is available via LDAP, the accessLocation
SHOULD be a uniformResourceIdentifier. The URI MUST specify a
distingishedName and attribute(s) and MAY specify a host name
(e.g., ldap://ldap.example.com/cn=example%20CA,dc=example,dc=com?
cACertificate;binary,crossCertificatePair;binary). Omitting the
host name (e.g.,
ldap:///cn=example%20CA,dc=example,dc=com?cACertificate;binary) has
the effect of specifying the use of whatever LDAP server is locally
configured. The URI MUST list appropriate attribute descriptions
for one or more attributes holding certificates or cross-
certificate pairs.
<span class="grey">Santesson & Housley Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc4325">RFC 4325</a> Authority Information Access CRL Extension December 2005</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Security Considerations</span>
Implementers should take into account the possible existence of
multiple unrelated CAs and CRL issuers with the same name.
Implementers should be aware of risks involved if the Authority
Information Access extensions of corrupted CRLs contain links to
malicious code. Implementers should always take the steps of
validating the retrieved data to ensure that the data is properly
formed.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. References</span>
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Normative References</span>
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, March 1997.
[<a id="ref-RFC2587">RFC2587</a>] Boeyen, S., Howes, T., and P. Richard, "Internet X.509
Public Key Infrastructure: LDAPv2 Schema", <a href="./rfc2587">RFC 2587</a>, June
1999.
[<a id="ref-PKIX1">PKIX1</a>] Housley, R., Polk, W., Ford, W., and D. Solo, "Internet
X.509 Public Key Infrastructure Certificate and
Certificate Revocation List (CRL) Profile", <a href="./rfc3280">RFC 3280</a>,
April 2002.
[HTTP/1.1] Fielding, R., Gettys, J., Mogul, J., Frystyk, H.,
Masinter, L., Leach, P., and T. Berners-Lee, "Hypertext
Transfer Protocol -- HTTP/1.1", <a href="./rfc2616">RFC 2616</a>, June 1999.
[<a id="ref-URI">URI</a>] Berners-Lee, T., Fielding, R., and L. Masinter, "Uniform
Resource Identifier (URI): Generic Syntax", STD 66, <a href="./rfc3986">RFC</a>
<a href="./rfc3986">3986</a>, January 2005.
[<a id="ref-LDAP">LDAP</a>] Wahl, M., Howes, T., and S. Kille, "Lightweight Directory
Access Protocol (v3)", <a href="./rfc2251">RFC 2251</a>, December 1997.
[<a id="ref-PKIX-CERT">PKIX-CERT</a>] Housley, R. and P. Hoffman, "Internet X.509 Public Key
Infrastructure Operational Protocols: FTP and HTTP", <a href="./rfc2585">RFC</a>
<a href="./rfc2585">2585</a>, May 1999.
[<a id="ref-CMC">CMC</a>] Myers, M., Liu, X., Schaad, J., and J. Weinstein,
"Certificate Management Messages over CMS", <a href="./rfc2797">RFC 2797</a>,
April 2000.
<span class="grey">Santesson & Housley Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc4325">RFC 4325</a> Authority Information Access CRL Extension December 2005</span>
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Informative References</span>
[<a id="ref-X.680">X.680</a>] ITU-T Recommendation X.680 (2002) | ISO/IEC 8824-1:2002),
Information Technology - Abstract Syntax Notation One,
2002.
[<a id="ref-X.690">X.690</a>] ITU-T Recommendation X.690 Information Technology - ASN.1
encoding rules: Specification of Basic Encoding Rules
(BER), Canonical Encoding Rules (CER) and Distinguished
Encoding Rules (DER), 1997.
Authors' Addresses
Stefan Santesson
Microsoft
Tuborg Boulevard 12
2900 Hellerup
Denmark
EMail: stefans@microsoft.com
Russell Housley
Vigil Security, LLC
918 Spring Knoll Drive
Herndon, VA 20170
USA
EMail: housley@vigilsec.com
<span class="grey">Santesson & Housley Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc4325">RFC 4325</a> Authority Information Access CRL Extension December 2005</span>
Full Copyright Statement
Copyright (C) The Internet Society (2005).
This document is subject to the rights, licenses and restrictions
contained in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a>, and except as set forth therein, the authors
retain all their rights.
This document and the information contained herein are provided on an
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND THE INTERNET
ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE
INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Intellectual Property
The IETF takes no position regarding the validity or scope of any
Intellectual Property Rights or other rights that might be claimed to
pertain to the implementation or use of the technology described in
this document or the extent to which any license under such rights
might or might not be available; nor does it represent that it has
made any independent effort to identify any such rights. Information
on the procedures with respect to rights in RFC documents can be
found in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and <a href="https://www.rfc-editor.org/bcp/bcp79">BCP 79</a>.
Copies of IPR disclosures made to the IETF Secretariat and any
assurances of licenses to be made available, or the result of an
attempt made to obtain a general license or permission for the use of
such proprietary rights by implementers or users of this
specification can be obtained from the IETF on-line IPR repository at
<a href="http://www.ietf.org/ipr">http://www.ietf.org/ipr</a>.
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights that may cover technology that may be required to implement
this standard. Please address the information to the IETF at ietf-
ipr@ietf.org.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Santesson & Housley Standards Track [Page 7]
</pre>
|