Request.ClientCertificate Collection

The ClientCertificate collection holds fields of keys and values from a security certificate that the client browser passes to the Web server. These fields are specified in the X.509 version 3 standard for public key certificates. Because X.509 is not an official standard, you may notice differences among certificates obtained from certification authorities. For more information, see the X509 Certificate article on the World Wide Web Consortium Web site.

In order to populate the fields of the ClientCertificate collection, both the Web server and the client browser must support the SSL3.0/PCT1.0 protocol. The Web site must have secure sockets layer (SSL) enabled and request client certificates. After SSL is enabled, the URL of the Web site will start with "https://" instead of "http://". The client browser must be capable of sending a certificate. If no certificate is sent, the ClientCertificate collection returns EMPTY.

You must configure your Web server to request client certificates.

To read the values in each field of the ClientCertificate collection, pass in a key name and optional subfield name.

Note

Beginning with IIS 6.0, IIS is built in unicode in order to provide improved support for international applications. This can affect features like Request.ClientCertificate Collection. If you are porting code from an older version of IIS, use custom COM object to convert the public key to ANSI in a return parameter that ASP can then display. For more information about creating COM objects for ASP pages, see Creating COM Components for ASP.

Syntax

Request.ClientCertificate( Key[SubField])

Parameters

  • Key
    Specifies the name of the certification field to retrieve. A client certificate consists of the following fields.

    Value

    Meaning

    Certificate

    A string containing the binary stream of the entire certificate content in ASN.1 format. This is useful to discover if special SubFields are present that are not listed below.

    Flags

    A set of flags that provides additional client certificate information. If Flags is set to 1, a client certificate is present. If Flags is set to 2, the last certificate in this chain is from an unknown issuer.

    Issuer

    A string that contains a list of subfield values containing information about the issuer of the certificate. If this value is specified without a SubField, the ClientCertificate collection returns a comma-separated list of subfields. For example, C=US, O=Verisign, and so on.

    SerialNumber

    A string that contains the certification serial number as an ASCII representation of hexadecimal bytes separated by hyphens (-). For example, 04-67-F3-02.

    Subject

    A string that contains a list of subfield values. The subfield values contain information about the subject of the certificate. If this value is specified without a SubField, the ClientCertificate collection returns a comma-separated list of subfields. For example, C=US, O=Msft, and so on.

    ValidFrom

    A date specifying when the certificate becomes valid. This date follows VBScript format and varies with international settings. For example, in the United States, 9/26/96 11:59:59 P.M.. The year value is displayed as a four-digit number.

    ValidUntil

    A date specifying when the certificate expires. The year value is displayed as a four-digit number.

  • SubField
    An optional parameter you can use to a retrieve an individual field in either the Subject or Issuer keys. This parameter is added to the Key parameter as a suffix. For example, IssuerO or SubjectCN. The following table lists some common SubField values.

    Value

    Meaning

    C

    Specifies the name of the country/region of origin.

    CN

    Specifies the common name of the user. (This subfield is only used with the Subject key.)

    GN

    Specifies a given name.

    I

    Specifies a set of initials.

    L

    Specifies a locality.

    O

    Specifies the company or organization name.

    OU

    Specifies the name of the organizational unit.

    S

    Specifies a state or province.

    T

    Specifies the title of the person or organization.

    SubField values other than those listed in the preceding table can be identified by their ASN.1 object identifier (OID). The format of the Object Identifier is a list of numbers separated by a period (.). A list of Object Identifiers for your certificate can be obtained from the authority that issued your certificate.

Applies To

Request Object

Example Code

You can iterate through the keys of the ClientCertificate collection, as shown in the following example.

<% 
  For Each strKey in Request.ClientCertificate 
    Response.Write strkey & " = " & Request.ClientCertificate(strkey) & "<BR>" 
  Next 
%> 

The following example retrieves the common name of the company that issued the client certificate.

<%= Request.ClientCertificate("IssuerCN") %> 

The following example displays the expiration date of the client certificate.

This certification will expire on  
<%= Request.ClientCertificate("ValidUntil") %> 

The following example uses the Flags key to test whether the issuer of the certificate is known.

<% 
  Const ceCertPresent = 1 
  Const ceUnrecognizedIssuer = 2 
  If Request.ClientCertificate("Flags") = ceUnrecognizedIssuer Then 
    Response.Write "Unrecognized issuer" 
  End If 
%> 

The following example displays all the fields of a client certificate.

Issuer: <%=Request.ClientCertificate("Issuer")%><br> 
Subject: <%=Request.ClientCertificate("Subject")%><br> 

<% cer=Request.ClientCertificate("Certificate") %> 
Certificate Raw Data: <%=cer%><br> 
Certificate length: <%=len(cer)%><br> 
Certificate Hex Data: 
<% For x=1 To 100 %> 
  <%=hex(asc(mid(cer,x,1)))%>nbsp; 
<% Next %> 

Requirements

Client: Requires Windows XP Professional, Windows 2000 Professional, or Windows NT Workstation 4.0.

Server: Requires Windows Server 2003, Windows 2000 Server, or Windows NT Server 4.0.

Product: IIS

See Also

Other Resources

Security and Cryptography